diff options
author | Eugene Sandulenko | 2006-04-11 22:11:12 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-04-11 22:11:12 +0000 |
commit | 9610a4daefb6717dacefc4fc428faf6a23529c9e (patch) | |
tree | cbbb87f025f428643fc2a6fd7f4cb7246fa5f207 /engines | |
parent | a677541ac8748b41cc96fa385f153e730676d769 (diff) | |
download | scummvm-rg350-9610a4daefb6717dacefc4fc428faf6a23529c9e.tar.gz scummvm-rg350-9610a4daefb6717dacefc4fc428faf6a23529c9e.tar.bz2 scummvm-rg350-9610a4daefb6717dacefc4fc428faf6a23529c9e.zip |
Fix warning.
svn-id: r21810
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lure/hotspots.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/lure/hotspots.cpp b/engines/lure/hotspots.cpp index 8d4ac1ece1..9499a8293f 100644 --- a/engines/lure/hotspots.cpp +++ b/engines/lure/hotspots.cpp @@ -623,11 +623,11 @@ void Hotspot::doGet(HotspotData *hotspot) { } if (sequenceOffset != 0) { - uint16 result = Script::execute(sequenceOffset); + uint16 execResult = Script::execute(sequenceOffset); - if (result == 1) return; - else if (result != 0) { - Dialog::showMessage(result, hotspotId()); + if (execResult == 1) return; + else if (execResult != 0) { + Dialog::showMessage(execResult, hotspotId()); return; } } |