diff options
| -rw-r--r-- | engines/kyra/sequences_lol.cpp | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/engines/kyra/sequences_lol.cpp b/engines/kyra/sequences_lol.cpp index 6f0afea033..ac9148e607 100644 --- a/engines/kyra/sequences_lol.cpp +++ b/engines/kyra/sequences_lol.cpp @@ -81,6 +81,13 @@ int LoLEngine::processPrologue() {  		}  		switch (selection) { +		case -1: +			// This is sent on RTL for example, if we would not have any +			// special case for this the default path would call quitGame +			// and thus make the next game launched from the launcher +			// quit instantly. +			break; +  		case 0:		// New game  			processSelection = 0;  			break; | 
