Skip to content

Commit

Permalink
Fixed a bug with graph being built from old data
Browse files Browse the repository at this point in the history
  • Loading branch information
MatVeiQaaa committed Aug 25, 2022
1 parent f14f273 commit 16828f6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions LR2GAS/GaugeIncrementsAsm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,20 @@ namespace
{
case 0:
*hkGraphNode = grooveGraph.graphNode[i];
grooveGraph.graphNode[i] = 0;
break;
case 1:
*hkGraphNode = hardGraph.graphNode[i];
hardGraph.graphNode[i] = 0;
break;
case 3:
*hkGraphNode = easyGraph.graphNode[i];
easyGraph.graphNode[i] = 0;
break;
}
}


}

void GaugeRestore()
Expand Down

0 comments on commit 16828f6

Please sign in to comment.