diff options
author | Eugene Sandulenko | 2019-07-26 23:26:34 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:29 +0200 |
commit | cfa90aa7bfc5a5b30b5e26210596dc251f62e353 (patch) | |
tree | fb48502ec03dab63e41d37033bc028d70db24016 /engines/hdb | |
parent | 2e3a36acbac4ffed5660567068e68be332b58b3b (diff) | |
download | scummvm-rg350-cfa90aa7bfc5a5b30b5e26210596dc251f62e353.tar.gz scummvm-rg350-cfa90aa7bfc5a5b30b5e26210596dc251f62e353.tar.bz2 scummvm-rg350-cfa90aa7bfc5a5b30b5e26210596dc251f62e353.zip |
HDB: Added more demo Lua constants
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/lua-script.cpp | 2 | ||||
-rw-r--r-- | engines/hdb/mpc.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/engines/hdb/lua-script.cpp b/engines/hdb/lua-script.cpp index 5d963da2d2..082fa04fbf 100644 --- a/engines/hdb/lua-script.cpp +++ b/engines/hdb/lua-script.cpp @@ -1513,6 +1513,8 @@ struct VarInit { { MONKEYLOGOSCREEN, "PIC_MONKEYLOGOSCREEN" }, { MONKEYLOGO_OOHOOH, "PIC_MONKEYLOGO_OOHOOH" }, { MONKEYLOGO_SMILE, "PIC_MONKEYLOGO_SMILE" }, + { PIC_DEMOSCREEN, "PIC_DEMOSCREEN" }, + { PIC_DEMOSCREEN2, "PIC_DEMOSCREEN2" }, { PIC_ENV_WHITE, "PIC_ENV_WHITE" }, { PIC_TEAM_BRIAN, "PIC_TEAM_BRIAN" }, { PIC_TEAM_STEVIE, "PIC_TEAM_STEVIE" }, diff --git a/engines/hdb/mpc.h b/engines/hdb/mpc.h index 137a5b381b..6f2b734add 100644 --- a/engines/hdb/mpc.h +++ b/engines/hdb/mpc.h @@ -565,6 +565,8 @@ namespace HDB { #define MONKEYLOGOSCREEN "monkeylogoscreen" #define MONKEYLOGO_OOHOOH "monkeylogo_oohooh" #define MONKEYLOGO_SMILE "monkeylogo_smile" +#define PIC_DEMOSCREEN "pic_demoscreen" +#define PIC_DEMOSCREEN2 "pic_demoscreen2" #define BACKSCROLL_PLANET1 "backscroll_planet1" #define BACKSCROLL_PLANET2 "backscroll_planet2" #define BACKSCROLL_PLANET3 "backscroll_planet3" |