Skip to content

Commit

Permalink
MainMenu.ogg
Browse files Browse the repository at this point in the history
Fixes #416
  • Loading branch information
MegAmi24 committed Aug 30, 2023
1 parent 39f8bf6 commit ce60155
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,10 @@ RSDKv4/[Bb]yte[Cc]ode/
RSDKv4/[Dd]ata/
RSDKv4/[Mm]ods/
RSDKv4/[Ss]cripts/
RSDKv4/log.txt
RSDKv4/usage.txt
RSDKv4/[Ss]ettings.ini
RSDKv4/[Ss][Dd]ata.bin
RSDKv4/[Uu][Dd]ata.bin
RSDKv4/*.txt
RSDKv4/*.ini
RSDKv4/*.bin
RSDKv4/*.bin

#OSX files
*.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion RSDKv4/NativeObjects/RecordsScreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ void RecordsScreen_Main(void *objPtr)

for (int r = 0; r < 3; ++r) {
if (time < records[r]) {
for (int s = r + 1; s < 3; ++s) records[s + 1] = records[s];
for (int s = 2; s > r; --s) records[s] = records[s - 1];
records[r] = time;
self->rank = r + 1;
break;
Expand Down

0 comments on commit ce60155

Please sign in to comment.