mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-01-27 02:04:43 +01:00
core, fix typo
platform, show Mark III as name for japanese SMS
This commit is contained in:
parent
5b0375009f
commit
bcebc0aed9
@ -38,7 +38,7 @@
|
||||
// some well known non-standard macros for detection.
|
||||
#if defined __BYTE_ORDER__
|
||||
#define CPU_IS_LE __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
||||
#elif defined _BYTE_ORDER
|
||||
#elif defined __BYTE_ORDER
|
||||
#define CPU_IS_LE __BYTE_ORDER == __LITTLE_ENDIAN
|
||||
#elif defined __BIG_ENDIAN__ || defined _M_PPC // Windows on PPC was big endian
|
||||
#define CPU_IS_LE 0
|
||||
|
||||
@ -418,6 +418,8 @@ static void system_announce(void)
|
||||
sys_name = "Master System";
|
||||
if (Pico.m.hardware & 0x1)
|
||||
sys_name = "Game Gear";
|
||||
else if (Pico.m.hardware & 0x4)
|
||||
sys_name = "Mark III";
|
||||
#ifdef NO_SMS
|
||||
extra = " [no support]";
|
||||
#endif
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user