aboutsummaryrefslogtreecommitdiff
path: root/frontend/main.c
diff options
context:
space:
mode:
authornotaz2012-11-06 03:37:53 +0200
committernotaz2012-11-06 03:37:53 +0200
commita1b44e3650691750cff4bf1c5bc04a36c3e8066d (patch)
tree66a611aaf90be2622cfca930c81b54c3b400f631 /frontend/main.c
parent456f1b86b44a631e7c58e42ae72ce07970843944 (diff)
downloadpcsx_rearmed-a1b44e3650691750cff4bf1c5bc04a36c3e8066d.tar.gz
pcsx_rearmed-a1b44e3650691750cff4bf1c5bc04a36c3e8066d.tar.bz2
pcsx_rearmed-a1b44e3650691750cff4bf1c5bc04a36c3e8066d.zip
frontend: make platform menu customizations more explicit
Diffstat (limited to 'frontend/main.c')
-rw-r--r--frontend/main.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/frontend/main.c b/frontend/main.c
index 53e3674..c1ceb57 100644
--- a/frontend/main.c
+++ b/frontend/main.c
@@ -32,6 +32,9 @@
#include "libpicofe/plat.h"
#include "libpicofe/readpng.h"
#endif
+#ifndef BOOT_MSG
+#define BOOT_MSG "Booting up..."
+#endif
// don't include debug.h - it breaks ARM build (R1 redefined)
void StartDebugger();
@@ -403,8 +406,8 @@ void emu_on_new_cd(void)
printf("----------------------------------------------------------\n");
}
- snprintf(hud_msg, sizeof(hud_msg), "Booting up...");
- hud_new_msg = 2;
+ snprintf(hud_msg, sizeof(hud_msg), BOOT_MSG);
+ hud_new_msg = 3;
}
int emu_core_preinit(void)