diff options
| author | Max Horn | 2002-12-29 19:52:32 +0000 |
|---|---|---|
| committer | Max Horn | 2002-12-29 19:52:32 +0000 |
| commit | aeb73ead6242292076ab177f907d7008c86dc314 (patch) | |
| tree | e4a792028de1f9922776e428309827940b614d5b | |
| parent | 4cf27c6265e6aa17ff1e4191172f712174b9c8de (diff) | |
| download | scummvm-rg350-aeb73ead6242292076ab177f907d7008c86dc314.tar.gz scummvm-rg350-aeb73ead6242292076ab177f907d7008c86dc314.tar.bz2 scummvm-rg350-aeb73ead6242292076ab177f907d7008c86dc314.zip | |
add timer variables - this (partially) fixes mouse clicking (boy, I did stare at script 32 for a long time for this one :-)
svn-id: r6261
| -rw-r--r-- | scumm/vars.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/vars.cpp b/scumm/vars.cpp index c00be1831c..05fa61cc72 100644 --- a/scumm/vars.cpp +++ b/scumm/vars.cpp @@ -271,8 +271,12 @@ void Scumm_v8::setupScummVars() VAR_CAMERA_ACCEL_Y = 110; VAR_CUSTOMSCALETABLE = 111; // FIXME - guess + VAR_TIMER_NEXT = 112; - // 113/114/115 are also TIMERs.. + VAR_TMR_1 = 113; + VAR_TMR_2 = 114; + VAR_TMR_3 = 115; + VAR_EGO = 126; VAR_DEBUGMODE = 130; |
