diff options
author | Torbjörn Andersson | 2011-01-29 08:08:58 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2011-01-29 08:08:58 +0000 |
commit | bf01059be1c8d01e66bce0b2facce78b13818b42 (patch) | |
tree | b5bd2d24a278337423d0411775e363f991d3371b /engines | |
parent | 2856e959be74d7ec062d48f6560d33c227c6a6b3 (diff) | |
download | scummvm-rg350-bf01059be1c8d01e66bce0b2facce78b13818b42.tar.gz scummvm-rg350-bf01059be1c8d01e66bce0b2facce78b13818b42.tar.bz2 scummvm-rg350-bf01059be1c8d01e66bce0b2facce78b13818b42.zip |
PARALLACTION: Add default case to silence GCC warning.
Not that I understand exactly what this function does, but since it's
a piece of debug code I figure I don't really have to.
svn-id: r55608
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/dialogue.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp index 4ce060c31d..0d5cd00834 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -175,6 +175,8 @@ void DialogueManager::transitionToState(DialogueState newState) { debug(" A%02i: %s", i, _visAnswers[i]._a->_text.c_str()); } break; + default: + break; } } } |