diff options
author | Lars Persson | 2006-04-21 22:10:50 +0000 |
---|---|---|
committer | Lars Persson | 2006-04-21 22:10:50 +0000 |
commit | 76ba8122a6990976b9ed7890ba4695c3e0ddc019 (patch) | |
tree | ca8fb4685efecbd0b22bccd8f12d35a0f144a25a | |
parent | a3661c158af1e6a0cff79714db84f78b33428ca8 (diff) | |
download | scummvm-rg350-76ba8122a6990976b9ed7890ba4695c3e0ddc019.tar.gz scummvm-rg350-76ba8122a6990976b9ed7890ba4695c3e0ddc019.tar.bz2 scummvm-rg350-76ba8122a6990976b9ed7890ba4695c3e0ddc019.zip |
Changed loadVGAFile dstSize datatype from uint to uint32 so it matches the data type which loadOffsets takes.
svn-id: r22077
-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(); |