diff options
| author | Strangerke | 2011-07-23 14:31:39 +0200 | 
|---|---|---|
| committer | Strangerke | 2011-07-23 14:31:39 +0200 | 
| commit | c728a53148d436cfebb33d58a75f3146980a39e0 (patch) | |
| tree | 327b58625f9df0d80aef48d871df7ea1339549d7 /engines/cge/text.cpp | |
| parent | 3ef0558aa933ce20242b3f842c235f792a6d2d32 (diff) | |
| download | scummvm-rg350-c728a53148d436cfebb33d58a75f3146980a39e0.tar.gz scummvm-rg350-c728a53148d436cfebb33d58a75f3146980a39e0.tar.bz2 scummvm-rg350-c728a53148d436cfebb33d58a75f3146980a39e0.zip  | |
CGE: Rename IOMode and SnCom enums
Diffstat (limited to 'engines/cge/text.cpp')
| -rw-r--r-- | engines/cge/text.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/cge/text.cpp b/engines/cge/text.cpp index dd75ea3681..edf7931278 100644 --- a/engines/cge/text.cpp +++ b/engines/cge/text.cpp @@ -234,7 +234,6 @@ void CGEEngine::inf(const char *txt) {  	}  } -  void sayTime(Sprite *spr) {  	/*  	  static char t[] = "00:00"; @@ -249,7 +248,7 @@ void sayTime(Sprite *spr) {  void killText() {  	if (_talk) { -		SNPOST_(SNKILL, -1, 0, _talk); +		_snail_->addCom(kSnKill, -1, 0, _talk);  		_talk = NULL;  	}  }  | 
