diff options
| author | Max Horn | 2006-02-04 12:11:10 +0000 |
|---|---|---|
| committer | Max Horn | 2006-02-04 12:11:10 +0000 |
| commit | 26349e6f65fc629db3334c80f230c976fae4ef55 (patch) | |
| tree | bbc05e419fa30e3b103e4652673bfec63777f02a /scumm/logic_he.cpp | |
| parent | 4e83bd307ad616e4b65d62db2995406941368a18 (diff) | |
| download | scummvm-rg350-26349e6f65fc629db3334c80f230c976fae4ef55.tar.gz scummvm-rg350-26349e6f65fc629db3334c80f230c976fae4ef55.tar.bz2 scummvm-rg350-26349e6f65fc629db3334c80f230c976fae4ef55.zip | |
Split intern.h and moved HE stuff into the new file intern_he.h
svn-id: r20372
Diffstat (limited to 'scumm/logic_he.cpp')
| -rw-r--r-- | scumm/logic_he.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/logic_he.cpp b/scumm/logic_he.cpp index e299f9720c..3707a16448 100644 --- a/scumm/logic_he.cpp +++ b/scumm/logic_he.cpp @@ -21,7 +21,7 @@ #include "common/stdafx.h" -#include "scumm/intern.h" +#include "scumm/intern_he.h" #include "scumm/logic_he.h" namespace Scumm { @@ -37,6 +37,10 @@ LogicHE::~LogicHE() { free(_userDataD); } +void LogicHE::writeScummVar(int var, int32 value) { + _vm->writeVar(var, value); +} + static int32 scumm_round(double arg) { return (int32)(arg + 0.5); } |
