DREAMWEB: Fix regressions in 'intro1text', 'redrawmainscrn', 'sitdowninbar'
This commit is contained in:
parent
16c9620dba
commit
7a3360e09f
3 changed files with 4 additions and 5 deletions
|
@ -746,7 +746,7 @@ void DreamGenContext::intro1Text() {
|
|||
if (data.byte(kIntrocount) != 2 && data.byte(kIntrocount) != 4 && data.byte(kIntrocount) != 6)
|
||||
return;
|
||||
|
||||
if (isCD() && data.byte(kCh1playing) == 255) {
|
||||
if (isCD() && data.byte(kCh1playing) != 255) {
|
||||
data.byte(kIntrocount)--;
|
||||
} else {
|
||||
if (data.byte(kIntrocount) == 2)
|
||||
|
|
|
@ -3558,10 +3558,9 @@ void DreamGenContext::redrawMainScrn() {
|
|||
}
|
||||
|
||||
void DreamGenContext::selectSlot2() {
|
||||
if (data.word(kMousebutton) == 0)
|
||||
selectSlot();
|
||||
else
|
||||
if (data.word(kMousebutton))
|
||||
data.byte(kLoadingorsave) = 2;
|
||||
selectSlot();
|
||||
}
|
||||
|
||||
void DreamGenContext::blank() {
|
||||
|
|
|
@ -397,7 +397,7 @@ void DreamGenContext::useChurchHole() {
|
|||
}
|
||||
|
||||
void DreamGenContext::sitDownInBar() {
|
||||
if (data.byte(kWatchmode) == 0xFF) {
|
||||
if (data.byte(kWatchmode) != 0xFF) {
|
||||
// Sat down
|
||||
showSecondUse();
|
||||
putBackObStuff();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue