We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a70112 commit 865195aCopy full SHA for 865195a
1 file changed
libogc/exception.c
@@ -61,7 +61,7 @@ typedef struct _framerec {
61
} frame_rec, *frame_rec_t;
62
63
static void *exception_xfb = (void*)0xC1700000; //we use a static address above ArenaHi.
64
-static int reload_timer = 1000;
+static int reload_timer = -1;
65
66
void __exception_sethandler(u32 nExcept, void (*pHndl)(frame_context*));
67
@@ -203,9 +203,11 @@ static void waitForReload(void)
203
u32 level;
204
205
PAD_Init();
206
+
207
+ kprintf("\n\n\tPress RESET (or Z on your GameCube Controller) to reload");
208
209
if(reload_timer > 0) {
- kprintf("\n\n\tPress RESET (or Z on your GameCube Controller) to skip\n\n\tReloading in %d seconds", reload_timer/50);
210
+ kprintf("\n\n\tReloading in %d seconds", reload_timer/50);
211
}
212
213
while ( 1 )
0 commit comments