diff options
| author | Strangerke | 2012-04-23 00:05:58 +0200 | 
|---|---|---|
| committer | Eugene Sandulenko | 2018-03-28 17:36:57 +0200 | 
| commit | b4629af5585033bcfd8aa1f50840f6fe2a36f161 (patch) | |
| tree | f7bc2da3c48c21547028ceaf0cb6cfc86773eae4 | |
| parent | 8bc2d28e5d23fc7bc2da1c4932fb5e6123413f6b (diff) | |
| download | scummvm-rg350-b4629af5585033bcfd8aa1f50840f6fe2a36f161.tar.gz scummvm-rg350-b4629af5585033bcfd8aa1f50840f6fe2a36f161.tar.bz2 scummvm-rg350-b4629af5585033bcfd8aa1f50840f6fe2a36f161.zip | |
LILLIPUT: fix regression in 6aef68e246448977f2b8ba1bb19a17d8eaf61642
| -rw-r--r-- | engines/lilliput/script.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/lilliput/script.cpp b/engines/lilliput/script.cpp index 7c8315d1ff..59180a042b 100644 --- a/engines/lilliput/script.cpp +++ b/engines/lilliput/script.cpp @@ -1796,7 +1796,7 @@ void LilliputScript::OC_displayVGAFile() {  	Common::String fileName = Common::String((const char *)&_vm->_rulesChunk4[index]);  	_word1881B = -1;  	_vm->displayVGAFile(fileName); -	OC_PaletteFadeOut(); +	OC_PaletteFadeIn();  }  void LilliputScript::OC_sub184D7() { | 
