aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2014-07-25 10:55:53 +0200
committerStrangerke2014-07-25 10:55:53 +0200
commitd83a8162bb4e2795e158c48679b9f4db5cf6cc41 (patch)
tree43c8b76008b873755697213f5bf9d33724247a7a /engines
parent737fc953a4a34b4d8cf020ba865dc4db18baef98 (diff)
downloadscummvm-rg350-d83a8162bb4e2795e158c48679b9f4db5cf6cc41.tar.gz
scummvm-rg350-d83a8162bb4e2795e158c48679b9f4db5cf6cc41.tar.bz2
scummvm-rg350-d83a8162bb4e2795e158c48679b9f4db5cf6cc41.zip
CGE2: Remove unused constant in Talk, fix a warning
Diffstat (limited to 'engines')
-rw-r--r--engines/cge2/talk.cpp2
-rw-r--r--engines/cge2/talk.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/engines/cge2/talk.cpp b/engines/cge2/talk.cpp
index b086627f80..2e7f87dcca 100644
--- a/engines/cge2/talk.cpp
+++ b/engines/cge2/talk.cpp
@@ -53,7 +53,7 @@ void Font::load() {
char path[10];
strcpy(path, "CGE.CFT");
if (!_vm->_resman->exist(path))
- error("Missing configuration file! %s", path);
+ error("Missing Font file! %s", path);
EncryptedStream fontFile(_vm, path);
assert(!fontFile.err());
diff --git a/engines/cge2/talk.h b/engines/cge2/talk.h
index cddcdc2c5e..ec4a347c69 100644
--- a/engines/cge2/talk.h
+++ b/engines/cge2/talk.h
@@ -41,7 +41,6 @@ namespace CGE2 {
#define kPosSize 256
#define kMapSize (256*8)
#define kFontHigh 8
-#define kFontExt ".CFT"
#define kCaptionSide 24
#define kInfName 101
#define kSayName 102