mirror of
https://github.com/thug1src/thug.git
synced 2025-02-18 18:49:06 +00:00
21 lines
612 B
C++
21 lines
612 B
C++
#ifndef __SK_PRODUCT_CODES_H
|
|
#define __SK_PRODUCT_CODES_H
|
|
|
|
namespace Config
|
|
{
|
|
|
|
// The mem card headers
|
|
// These are also used to derive the elf name for comparison so that the language can be
|
|
// autodetected, in sys\config\ngps\p_config.cpp
|
|
#define NGPS_NTSC "BASLUS-20731" // Mick: 20731 is the official THPS5 NTSC SLUS number
|
|
#define NGPS_PAL_ENGLISH "BESLES-51848"
|
|
#define NGPS_PAL_FRENCH "BESLES-51851" // <<<<<<<<<<<<<<<<<<< just guessing here.....
|
|
#define NGPS_PAL_GERMAN "BESLES-51852"
|
|
#define NGPS_PAL_ITALIAN "BESLES-51853"
|
|
#define NGPS_PAL_SPANISH "BESLES-51854"
|
|
|
|
};
|
|
|
|
#endif
|
|
|