aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/text.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/cge/text.cpp')
-rw-r--r--engines/cge/text.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/text.cpp b/engines/cge/text.cpp
index 7df51f1126..515c1091f8 100644
--- a/engines/cge/text.cpp
+++ b/engines/cge/text.cpp
@@ -88,7 +88,7 @@ int TEXT::Find(int ref) {
void TEXT::Preload(int from, int upto) {
INI_FILE tf = FileName;
- if (! tf.Error) {
+ if (!tf._error) {
HAN *CacheLim = Cache + Size;
char line[LINE_MAX + 1];
int n;
@@ -130,7 +130,7 @@ void TEXT::Preload(int from, int upto) {
char *TEXT::Load(int idx, int ref) {
INI_FILE tf = FileName;
- if (! tf.Error) {
+ if (!tf._error) {
HAN *p = &Cache[idx];
char line[LINE_MAX + 1];
int n;
@@ -221,7 +221,7 @@ void TEXT::Say(const char *txt, Sprite *spr) {
}
}
-void CGEEngine::Inf(const char *txt) {
+void CGEEngine::inf(const char *txt) {
KillText();
Talk = new TALK(this, txt, RECT);
if (Talk) {