From 0000a3139a7c1d3ddf993741d4e0aa0c7ac3d760 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Fri, 1 Jul 2011 08:37:40 +0200 Subject: CGE: Some more renaming (wip) --- engines/cge/text.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/cge/text.cpp') 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) { -- cgit v1.2.3