diff options
| author | Eugene Sandulenko | 2016-01-03 00:28:37 +0100 | 
|---|---|---|
| committer | Eugene Sandulenko | 2016-01-03 00:28:37 +0100 | 
| commit | c6a83d1e06fd96e49c8500306fd7d45de2c45e72 (patch) | |
| tree | c80c9a7049b67ae5584f3d0ef7cb15eb80733af8 | |
| parent | 0870ac88b8ce03753bf6114d2c0a76f5a638b61d (diff) | |
| download | scummvm-rg350-c6a83d1e06fd96e49c8500306fd7d45de2c45e72.tar.gz scummvm-rg350-c6a83d1e06fd96e49c8500306fd7d45de2c45e72.tar.bz2 scummvm-rg350-c6a83d1e06fd96e49c8500306fd7d45de2c45e72.zip  | |
WAGE: Proper game start
| -rw-r--r-- | engines/wage/wage.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/wage.cpp b/engines/wage/wage.cpp index 07fe30e429..5ab49eaba0 100644 --- a/engines/wage/wage.cpp +++ b/engines/wage/wage.cpp @@ -112,7 +112,7 @@ Common::Error WageEngine::run() {  	_temporarilyHidden = false;  	Common::String input("look"); -	_world->_globalScript->execute(_world, 1, &input, NULL, this); +	processTurn(&input, NULL);  	while (true) {  		processEvents();  | 
