aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/text.cpp
diff options
context:
space:
mode:
authorStrangerke2011-07-01 08:37:40 +0200
committerStrangerke2011-07-01 08:37:40 +0200
commit0000a3139a7c1d3ddf993741d4e0aa0c7ac3d760 (patch)
tree7f7391ee641b4ffbfa0b19455ae8acdc1e30e0df /engines/cge/text.cpp
parentf59c910b8f41cfa9eeda88ce5f4d5c2a18b97662 (diff)
downloadscummvm-rg350-0000a3139a7c1d3ddf993741d4e0aa0c7ac3d760.tar.gz
scummvm-rg350-0000a3139a7c1d3ddf993741d4e0aa0c7ac3d760.tar.bz2
scummvm-rg350-0000a3139a7c1d3ddf993741d4e0aa0c7ac3d760.zip
CGE: Some more renaming (wip)
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) {