diff options
-rw-r--r-- | engines/simon/res.cpp | 2 | ||||
-rw-r--r-- | engines/simon/simon.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/res.cpp b/engines/simon/res.cpp index 96e1663371..a65b862b7e 100644 --- a/engines/simon/res.cpp +++ b/engines/simon/res.cpp @@ -638,7 +638,7 @@ void SimonEngine::loadSimonVGAFile(uint vga_id) { } } -byte *SimonEngine::loadVGAFile(uint id, uint type, uint &dstSize) { +byte *SimonEngine::loadVGAFile(uint id, uint type, uint32 &dstSize) { File in; char filename[15]; byte *dst = NULL; diff --git a/engines/simon/simon.h b/engines/simon/simon.h index b26156e9de..23679fd852 100644 --- a/engines/simon/simon.h +++ b/engines/simon/simon.h @@ -1054,7 +1054,7 @@ protected: byte *getBackGround(); byte *getScaleBuf(); - byte *loadVGAFile(uint id, uint type, uint &dstSize); + byte *loadVGAFile(uint id, uint type, uint32 &dstSize); void loadSimonVGAFile(uint vga_id); int init(); |