SCI: Still limit lower boundary in SCI1.1, moved upper priority boundary limit removal for SCI1.1 into init
svn-id: r47382
This commit is contained in:
parent
136ae389d8
commit
d17e80f214
2 changed files with 4 additions and 3 deletions
|
@ -90,7 +90,10 @@ void SciGui::initPriorityBands() {
|
|||
if (_usesOldGfxFunctions) {
|
||||
_gfx->PriorityBandsInit(15, 42, 200);
|
||||
} else {
|
||||
_gfx->PriorityBandsInit(14, 42, 190);
|
||||
if (getSciVersion() >= SCI_VERSION_1_1)
|
||||
_gfx->PriorityBandsInit(14, 0, 190);
|
||||
else
|
||||
_gfx->PriorityBandsInit(14, 42, 190);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue