mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 21:52:48 +00:00
25 lines
438 B
C
25 lines
438 B
C
#include "common.h"
|
|
#include "region.h"
|
|
|
|
// Names of system regions, short form.
|
|
const char* const g_regionNamesShort[SMDH_NUM_REGIONS] = {
|
|
"JPN",
|
|
"USA",
|
|
"EUR",
|
|
"AUS", // mostly unused
|
|
"CHN",
|
|
"KOR",
|
|
"TWN",
|
|
};
|
|
|
|
// Names of system regions, long form.
|
|
const char* const g_regionNamesLong[SMDH_NUM_REGIONS] = {
|
|
"Japan",
|
|
"Americas",
|
|
"Europe",
|
|
"Australia",
|
|
"China",
|
|
"Korea",
|
|
"Taiwan",
|
|
};
|