diff options
author | Chris Apers | 2003-10-09 14:17:06 +0000 |
---|---|---|
committer | Chris Apers | 2003-10-09 14:17:06 +0000 |
commit | 3f06651bab55014b97ba299dc700a9ba99034ad9 (patch) | |
tree | c4c7631eb7cb5557f163965aba4115ac3e93f653 /scumm/smush | |
parent | 1de6c5adb00536bc5d4c8d5cd8a621d389e3f2a8 (diff) | |
download | scummvm-rg350-3f06651bab55014b97ba299dc700a9ba99034ad9.tar.gz scummvm-rg350-3f06651bab55014b97ba299dc700a9ba99034ad9.tar.bz2 scummvm-rg350-3f06651bab55014b97ba299dc700a9ba99034ad9.zip |
Moved PalmOS initializations out of namespaces.
svn-id: r10703
Diffstat (limited to 'scumm/smush')
-rw-r--r-- | scumm/smush/codec47.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/smush/codec47.cpp b/scumm/smush/codec47.cpp index 5cc6d7e709..e331f95f92 100644 --- a/scumm/smush/codec47.cpp +++ b/scumm/smush/codec47.cpp @@ -617,11 +617,13 @@ bool Codec47Decoder::decode(byte *dst, const byte *src) { return true; } +} // End of namespace Scumm + #ifdef __PALM_OS__ #include "scumm_globals.h" _GINIT(Codec47) -_GSETPTR(codec47_table, GBVARS_CODEC47TABLE_INDEX, int8, GBVARS_SCUMM) +_GSETPTR(Scumm::codec47_table, GBVARS_CODEC47TABLE_INDEX, int8, GBVARS_SCUMM) _GEND _GRELEASE(Codec47) @@ -630,4 +632,4 @@ _GEND #endif -} // End of namespace Scumm + |