mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
add list of possible languages in comi and relevant variable
svn-id: r6565
This commit is contained in:
parent
afec98c655
commit
8e9d8cff81
@ -160,6 +160,19 @@ enum {
|
||||
MBS_MAX_KEY = 0x0200
|
||||
};
|
||||
|
||||
// possible languages for comi
|
||||
enum Languages {
|
||||
EN_USA = 0,
|
||||
DE_DEU = 1,
|
||||
FR_FRA = 2,
|
||||
IT_ITA = 3,
|
||||
PT_BRA = 4,
|
||||
ES_ESP = 5,
|
||||
JA_JPN = 6,
|
||||
ZH_TWN = 7,
|
||||
KO_KOR = 8
|
||||
};
|
||||
|
||||
#define _maxRooms res.num[rtRoom]
|
||||
#define _maxScripts res.num[rtScript]
|
||||
#define _maxCostumes res.num[rtCostume]
|
||||
|
@ -241,6 +241,8 @@ void Scumm_v8::setupScummVars()
|
||||
|
||||
//VAR_VOICE_MODE = 39; // 0 is voice, 1 is voice+text, 2 is text only
|
||||
VAR_GAME_LOADED = 40;
|
||||
VAR_LANGUAGE = 41; // see Languages enum in scumm.h for possible values
|
||||
|
||||
VAR_CURRENTDISK = 42;
|
||||
|
||||
VAR_SCROLL_SCRIPT = 50; // FIXME - guess based on where this is in V7
|
||||
|
Loading…
x
Reference in New Issue
Block a user