diff options
| -rw-r--r-- | engines/mohawk/cursors.cpp | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/mohawk/cursors.cpp b/engines/mohawk/cursors.cpp index cbd17e0b86..8c72c9875e 100644 --- a/engines/mohawk/cursors.cpp +++ b/engines/mohawk/cursors.cpp @@ -199,12 +199,10 @@ void MacCursorManager::setCursor(uint16 id) {  	if (!stream)  		stream = _resFork->getResource(MKTAG('C','U','R','S'), id); -	if (stream) { +	if (stream)  		setMacCursor(stream); -		delete stream; -	} else { +	else  		setDefaultCursor(); -	}  }  LivingBooksCursorManager_v2::LivingBooksCursorManager_v2() {  | 
