diff options
-rw-r--r-- | scumm/intern.h | 2 | ||||
-rw-r--r-- | scumm/resource_v2.cpp | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/scumm/intern.h b/scumm/intern.h index 74cf658a20..35e9f8131a 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -178,7 +178,9 @@ public: protected: void readIndexFile(); + void loadCharset(int no); void readMAXS(); + typedef void (Scumm_v2::*OpcodeProcV2)(); struct OpcodeEntryV2 { OpcodeProcV2 proc; diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp index de7cc6462d..3c77315502 100644 --- a/scumm/resource_v2.cpp +++ b/scumm/resource_v2.cpp @@ -87,3 +87,7 @@ void Scumm_v2::readMAXS() { _shadowPalette = (byte *) calloc(_shadowPaletteSize, 1); // FIXME - needs to be removed later allocateArrays(); } + +void Scumm_v2::loadCharset(int num) { + warning("Charset loading not yet implmeneted for V1/V2"); +} |