mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Fixed a little graphics glitch, where sometimes parts of the interface were cleared.
svn-id: r28932
This commit is contained in:
parent
e3f1a1ced8
commit
c4aa4fe644
@ -302,7 +302,7 @@ void KyraEngine_v1::characterSays(int vocFile, const char *chatStr, int8 charNum
|
||||
if (textEnabled()) {
|
||||
_animator->restoreAllObjectBackgrounds();
|
||||
|
||||
_screen->copyRegion(12, _text->_talkMessageY, 12, 136, 308, _text->_talkMessageH, 2, 2);
|
||||
_screen->copyRegion(12, _text->_talkMessageY, 12, 136, 296, _text->_talkMessageH, 2, 2);
|
||||
_screen->hideMouse();
|
||||
|
||||
_text->printCharacterText(processedString, charNum, _characterList[charNum].x1);
|
||||
@ -321,12 +321,12 @@ void KyraEngine_v1::characterSays(int vocFile, const char *chatStr, int8 charNum
|
||||
if (textEnabled()) {
|
||||
_animator->restoreAllObjectBackgrounds();
|
||||
|
||||
_screen->copyRegion(12, 136, 12, _text->_talkMessageY, 308, _text->_talkMessageH, 2, 2);
|
||||
_screen->copyRegion(12, 136, 12, _text->_talkMessageY, 296, _text->_talkMessageH, 2, 2);
|
||||
_animator->preserveAllBackgrounds();
|
||||
_animator->prepDrawAllObjects();
|
||||
_screen->hideMouse();
|
||||
|
||||
_screen->copyRegion(12, _text->_talkMessageY, 12, _text->_talkMessageY, 308, _text->_talkMessageH, 2, 0);
|
||||
_screen->copyRegion(12, _text->_talkMessageY, 12, _text->_talkMessageY, 296, _text->_talkMessageH, 2, 0);
|
||||
_screen->showMouse();
|
||||
_animator->flagAllObjectsForRefresh();
|
||||
_animator->copyChangedObjectsForward(0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user