Skip to content

Commit

Permalink
re: set
Browse files Browse the repository at this point in the history
  • Loading branch information
MegAmi24 committed Aug 20, 2023
1 parent 1338244 commit 4873b24
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion RSDKv4/Userdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,15 @@ void NotifyCallback(int *callback, int *param1, int *param2, int *param3)
case NOTIFY_STATS_ENEMY: PrintLog("NOTIFY: StatsEnemy() -> %d, %d, %d", *param1, *param2, *param3); break;
case NOTIFY_STATS_CHARA_ACTION: PrintLog("NOTIFY: StatsCharaAction() -> %d, %d, %d", *param1, *param2, *param3); break;
case NOTIFY_STATS_RING: PrintLog("NOTIFY: StatsRing() -> %d", *param1); break;
case NOTIFY_STATS_MOVIE: PrintLog("NOTIFY: StatsMovie() -> %d", *param1); break;
case NOTIFY_STATS_MOVIE:
PrintLog("NOTIFY: StatsMovie() -> %d", *param1);
ClearGraphicsData();
ClearAnimationData();
activeStageList = 0;
stageMode = STAGEMODE_LOAD;
Engine.gameMode = ENGINE_MAINGAME;
stageListPosition = 0;
break;
case NOTIFY_STATS_PARAM_1: PrintLog("NOTIFY: StatsParam1() -> %d, %d, %d", *param1, *param2, *param3); break;
case NOTIFY_STATS_PARAM_2: PrintLog("NOTIFY: StatsParam2() -> %d", *param1); break;
case NOTIFY_CHARACTER_SELECT:
Expand Down

0 comments on commit 4873b24

Please sign in to comment.