Skip to content

Commit

Permalink
vcs: fix broken clock and money counter
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirteenAG committed Sep 17, 2024
1 parent 7cb0ce1 commit 4efa0bd
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions source/GTAVCS.PCSX2F.WidescreenFix/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,12 +441,9 @@ void init()
injector.MakeInlineLUIORI(0x3215E8, (4.0f * Screen.fHudScale));

// Clock Text Thingies
float timesc = 10.4375f;
if (Screen.fAspectRatio > (16.0f / 9.0f))
timesc = 10.0f;
injector.MakeLUIORI(0x31efe8, at, timesc * ARDiff); //money and time scale
injector.MakeLUIORI(0x31efe8, at, 9.0f * ARDiff); //money and time scale
injector.MakeInlineLUIORI(0x31F1D4, (2.0f * ARDiff));
injector.MakeInlineLUIORI(0x31F1EC, (4.0f * ARDiff));
injector.MakeLUIORI(0x31F1EC, at, (4.0f * ARDiff));
injector.MakeInlineLUIORI(0x31F10C, (3.0f * ARDiff));
}
}
Expand Down

0 comments on commit 4efa0bd

Please sign in to comment.