diff options
| -rw-r--r-- | engines/adl/hires2.cpp | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/engines/adl/hires2.cpp b/engines/adl/hires2.cpp index 575bab9b97..19acf19476 100644 --- a/engines/adl/hires2.cpp +++ b/engines/adl/hires2.cpp @@ -154,7 +154,8 @@ void HiRes2Engine::checkTextOverflow(char c) {  		return;  	_linesPrinted = 0; -	// Bell +	_display->updateTextScreen(); +	bell();  	while (true) {  		char key = inputKey(false); @@ -165,9 +166,7 @@ void HiRes2Engine::checkTextOverflow(char c) {  		if (key == APPLECHAR('\r'))  			break; -		// Bell -		// Bell -		// Bell +		bell(3);  	}  } | 
