diff options
| author | Max Horn | 2003-10-03 18:33:57 +0000 |
|---|---|---|
| committer | Max Horn | 2003-10-03 18:33:57 +0000 |
| commit | d7660a2662be298dad3cf9b320137dac8744d456 (patch) | |
| tree | c80ddb2c4fb1917660db0010bb0b3d6ed8d57b24 /scumm/script_v8.cpp | |
| parent | eabeb62e20a8ed2117e19ca3bf04bb1d33637b79 (diff) | |
| download | scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.gz scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.bz2 scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.zip | |
introduced namespace Scumm; made #include statements use scumm/ prefix explicitly
svn-id: r10571
Diffstat (limited to 'scumm/script_v8.cpp')
| -rw-r--r-- | scumm/script_v8.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 1bfb99aa96..74e32e2d45 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -33,6 +33,8 @@ #include "sound/mixer.h" +namespace Scumm { + #define OPCODE(x) { &ScummEngine_v8::x, #x } void ScummEngine_v8::setupOpcodes() { @@ -1607,3 +1609,5 @@ void ScummEngine_v8::o8_drawObject() { putState(obj, state); } + +} // End of namespace Scumm |
