GodMode9/source/game/region.c
2017-08-25 02:15:56 +02:00

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",
};