diff options
| author | Alyssa Milburn | 2010-12-09 21:24:46 +0000 | 
|---|---|---|
| committer | Alyssa Milburn | 2010-12-09 21:24:46 +0000 | 
| commit | eecc2bcb12a7bff3573092e0a844cd0d37856599 (patch) | |
| tree | 1632aa72c49d9e22e37d4ecde6517d2a74e3405a | |
| parent | 32ed3b35829dc29617c7a300d043afc2bd26999b (diff) | |
| download | scummvm-rg350-eecc2bcb12a7bff3573092e0a844cd0d37856599.tar.gz scummvm-rg350-eecc2bcb12a7bff3573092e0a844cd0d37856599.tar.bz2 scummvm-rg350-eecc2bcb12a7bff3573092e0a844cd0d37856599.zip | |
MOHAWK: Don't redraw the screen every frame in LB
svn-id: r54844
| -rw-r--r-- | engines/mohawk/livingbooks.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp index e32e0f4475..ff259c269b 100644 --- a/engines/mohawk/livingbooks.cpp +++ b/engines/mohawk/livingbooks.cpp @@ -474,6 +474,7 @@ void MohawkEngine_LivingBooks::updatePage() {  		for (uint16 i = 0; i < _items.size(); i++)  			_items[i]->draw(); +		_needsRedraw = false;  		_needsUpdate = true;  	}  } | 
