DREAMWEB: Replaced most isCD calls with calls checking for speech
This is quite useful for devices with limited storage, where the user can use the CD version without its speech files
This commit is contained in:
parent
63da2ac271
commit
eaed1b725a
8 changed files with 48 additions and 46 deletions
|
@ -840,9 +840,11 @@ void DreamWebEngine::showSlots() {
|
|||
void DreamWebEngine::showOpBox() {
|
||||
showFrame(_tempGraphics, kOpsx, kOpsy, 0, 0);
|
||||
|
||||
// CHECKME: There seem to be versions of dreamweb in which this call
|
||||
// should be removed. It displays a red dot on the ops dialogs if left in.
|
||||
showFrame(_tempGraphics, kOpsx, kOpsy + 55, 4, 0);
|
||||
// This call displays half of the ops dialog in the CD version. It's not
|
||||
// in the floppy version, and if it's called, a stray red dot is shown in
|
||||
// the game dialogs.
|
||||
if (isCD())
|
||||
showFrame(_tempGraphics, kOpsx, kOpsy + 55, 4, 0);
|
||||
}
|
||||
|
||||
void DreamWebEngine::showLoadOps() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue