diff options
author | Travis Howell | 2006-09-29 05:36:53 +0000 |
---|---|---|
committer | Travis Howell | 2006-09-29 05:36:53 +0000 |
commit | 6b37e39904bfd0f9580725e314a4007d8877a559 (patch) | |
tree | b47de73c8e8ae1e5a34636bd64b0a46074262531 | |
parent | 8d0d856bd85b11998655608a3ca4d1e52e129c96 (diff) | |
download | scummvm-rg350-6b37e39904bfd0f9580725e314a4007d8877a559.tar.gz scummvm-rg350-6b37e39904bfd0f9580725e314a4007d8877a559.tar.bz2 scummvm-rg350-6b37e39904bfd0f9580725e314a4007d8877a559.zip |
Correct size of opcode in dumpOpcode()
svn-id: r24003
-rw-r--r-- | engines/simon/debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/debug.cpp b/engines/simon/debug.cpp index f1fe5759dd..15e69582e5 100644 --- a/engines/simon/debug.cpp +++ b/engines/simon/debug.cpp @@ -34,7 +34,7 @@ namespace Simon { const byte *SimonEngine::dumpOpcode(const byte *p) { - byte opcode; + uint opcode; const char *s, *st; if (getGameType() == GType_ELVIRA || getGameType() == GType_ELVIRA2) { |