diff options
Diffstat (limited to 'engines/saga')
-rw-r--r-- | engines/saga/saga.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/saga.h b/engines/saga/saga.h index 589be1becc..e391e662c3 100644 --- a/engines/saga/saga.h +++ b/engines/saga/saga.h @@ -385,7 +385,7 @@ struct StringsTable { Common::Array<char *> strings; const char *getString(uint index) const { - if ((strings.size() <= index) || (index < 0)) { + if (strings.size() <= index) { // This occurs at the end of Ted's chapter, right after the ending cutscene warning("StringsTable::getString wrong index 0x%X (%d)", index, strings.size()); return ""; |