aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/saga.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga/saga.h')
-rw-r--r--engines/saga/saga.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/saga/saga.h b/engines/saga/saga.h
index fc783933f1..9b97e54dc4 100644
--- a/engines/saga/saga.h
+++ b/engines/saga/saga.h
@@ -81,7 +81,6 @@ class Puzzle;
class Resource;
class ResourceContext;
-struct StringList;
using Common::MemoryReadStream;
using Common::MemoryReadStreamEndian;
@@ -390,7 +389,7 @@ struct StringsTable {
const char *getString(int index) const {
if ((stringsCount <= index) || (index < 0)) {
// This occurs at the end of Ted's chapter, right after the ending cutscene
- warning("StringList::getString wrong index 0x%X (%d)", index, stringsCount);
+ warning("StringsTable::getString wrong index 0x%X (%d)", index, stringsCount);
return "";
}
return strings[index];