Skip to content

Commit

Permalink
Fix missing eye 'cg' when playing in OG mode
Browse files Browse the repository at this point in the history
  • Loading branch information
drojf committed Jun 24, 2024
1 parent 793dbbd commit 7999c6f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Binary file added OGBackgrounds/bg_018.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion Update/wata_011_02.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4985,7 +4985,14 @@ void main()


DisableWindow();
DrawScene("scene/003", 100 );

// OG game displays special image here of eyes
// Make sure it displays, even if user has CGs turned off
if (GetGlobalFlag(GArtStyle) == 2) {
DrawScene("bg_018", 100 );
} else {
DrawScene("scene/003", 100 );
}

PlaySE( 3, "wa_027", 56, 64 );
ShakeScreen( 1, 20, 20, 5, 0, );
Expand Down

0 comments on commit 7999c6f

Please sign in to comment.