We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd16f67 commit 583cae8Copy full SHA for 583cae8
1 file changed
src_rebuild/Game/C/scores.c
@@ -2,6 +2,7 @@
2
#include "scores.h"
3
#include "glaunch.h"
4
#include "mission.h"
5
+#include "loadsave.h"
6
7
SCORE_TABLES ScoreTables;
8
PLAYER_SCORE gPlayerScore;
@@ -55,6 +56,10 @@ void AddScoreToTable(SCORE_ENTRY *table, int entry)
55
56
table->items = gPlayerScore.items;
57
58
strcpy(table->name, gPlayerScore.name);
59
+
60
+#ifndef PSX
61
+ SaveCurrentProfile(1);
62
+#endif
63
}
64
65
// [D] [T]
0 commit comments