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:
Martin Kiewitz 2010-01-19 15:20:29 +00:00
parent 136ae389d8
commit d17e80f214
2 changed files with 4 additions and 3 deletions

View file

@ -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);
}
}