diff options
author | Filippos Karapetis | 2011-01-31 15:05:45 +0000 |
---|---|---|
committer | Filippos Karapetis | 2011-01-31 15:05:45 +0000 |
commit | fc02bd37221f07646388fb2eb128f95a46ef6dd5 (patch) | |
tree | 400d9284371bc86f1ec1a7da31daa108159d1b37 | |
parent | 7cb4b49db961590700d6181da80d73201d76f053 (diff) | |
download | scummvm-rg350-fc02bd37221f07646388fb2eb128f95a46ef6dd5.tar.gz scummvm-rg350-fc02bd37221f07646388fb2eb128f95a46ef6dd5.tar.bz2 scummvm-rg350-fc02bd37221f07646388fb2eb128f95a46ef6dd5.zip |
DRASCULA: Fixed a warning
svn-id: r55685
-rw-r--r-- | engines/drascula/interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/drascula/interface.cpp b/engines/drascula/interface.cpp index 04d9eb370d..7bb94c2542 100644 --- a/engines/drascula/interface.cpp +++ b/engines/drascula/interface.cpp @@ -91,7 +91,7 @@ void DrasculaEngine::selectVerb(int verb) { } bool DrasculaEngine::confirmExit() { - byte key; + byte key = 0; color_abc(kColorRed); updateRoom(); |