mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 09:56:30 +00:00
LOL/PC-98: fixed dialoge box sizes
svn-id: r44369
This commit is contained in:
parent
5ffc41a09e
commit
77a27acf83
@ -3296,7 +3296,7 @@ const ScreenDim Screen_LoL::_screenDimTable16C[] = {
|
||||
{ 0x00, 0x00, 0x28, 0xC8, 0x33, 0x44, 0x00, 0x00 }, // Taken from Intro
|
||||
{ 0x08, 0x48, 0x18, 0x38, 0x33, 0x44, 0x00, 0x00 },
|
||||
{ 0x0E, 0x00, 0x16, 0x78, 0x33, 0x44, 0x00, 0x00 },
|
||||
{ 0x0B, 0x7B, 0x1C, 0x12, 0x33, 0x11, 0x00, 0x00 },
|
||||
{ 0x0B, 0x7B, 0x1C, 0x11, 0x33, 0x11, 0x00, 0x00 },
|
||||
{ 0x0B, 0x7B, 0x1C, 0x2D, 0x33, 0x11, 0x00, 0x00 },
|
||||
{ 0x55, 0x7B, 0xE9, 0x37, 0x33, 0x11, 0x00, 0x00 },
|
||||
{ 0x0B, 0x8C, 0x10, 0x2B, 0x33, 0x44, 0x00, 0x00 }, // Main menu box (4 entries)
|
||||
|
@ -105,7 +105,10 @@ void TextDisplayer_LoL::expandField() {
|
||||
_vm->_timer->disable(11);
|
||||
_screen->setScreenDim(clearDim(3));
|
||||
_screen->copyRegionToBuffer(3, 0, 0, 320, 10, tmp);
|
||||
_screen->copyRegion(83, 140, 0, 0, 235, 3, 0, 2, Screen::CR_NO_P_CHECK);
|
||||
if (_vm->gameFlags().use16ColorMode)
|
||||
_screen->copyRegion(83, 139, 0, 0, 235, 4, 0, 2, Screen::CR_NO_P_CHECK);
|
||||
else
|
||||
_screen->copyRegion(83, 140, 0, 0, 235, 3, 0, 2, Screen::CR_NO_P_CHECK);
|
||||
|
||||
for (int i = 140; i < 177; i++) {
|
||||
uint32 endTime = _vm->_system->getMillis() + _vm->_tickLength;
|
||||
|
Loading…
x
Reference in New Issue
Block a user