Total Replay would like a jump to $100 when the game quits. This change should do that. The version number also got bumped too 2.2a2.

This commit is contained in:
Jeremy Rand 2020-01-29 22:02:39 -05:00
parent 879030f4ff
commit c67874ca74
3 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
void totalReplayQuit(void) void totalReplayQuit(void)
{ {
__asm__ ("BIT $C082"); __asm__ ("BIT $C082");
__asm__ ("JMP ($FFFC)"); __asm__ ("JMP $100");
} }
#endif #endif

View File

@ -26,7 +26,7 @@
// Defines // Defines
#define SAVE_OPTIONS_FILE "A2BEJWLD.OPTS" #define SAVE_OPTIONS_FILE "A2BEJWLD.OPTS"
#define BASE_VERSION "v2.2a1" #define BASE_VERSION "v2.2a2"
#ifdef TOTAL_REPLAY_BUILD #ifdef TOTAL_REPLAY_BUILD
#define VERSION BASE_VERSION ".tr" #define VERSION BASE_VERSION ".tr"