Skip to content

Commit

Permalink
GB: Rename this variable to isolate from a global variable of the sam…
Browse files Browse the repository at this point in the history
…e name

- this is a temporary variable and should only affect on this section, and not the global one.
  • Loading branch information
retro-wertz committed Jul 27, 2019
1 parent 0d423b9 commit a727e22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gb/GB.cpp
Expand Up @@ -4830,16 +4830,16 @@ void gbEmulate(int ticksToStop)
//(fixes a part of Carmaggedon problem)
if ((register_LCDC & 0x01 || gbCgbMode) && (register_LCDC & 0x20) && (gbWindowLine != -2)) {

int inUseRegister_WY = 0;
int tempinUseRegister_WY = inUseRegister_WY;
int tempgbWindowLine = gbWindowLine;

if ((tempgbWindowLine == -1) || (tempgbWindowLine > 144)) {
inUseRegister_WY = oldRegister_WY;
tempinUseRegister_WY = oldRegister_WY;
if (register_LY > oldRegister_WY)
tempgbWindowLine = 146;
}

if (register_LY >= inUseRegister_WY) {
if (register_LY >= tempinUseRegister_WY) {

if (tempgbWindowLine == -1)
tempgbWindowLine = 0;
Expand Down

0 comments on commit a727e22

Please sign in to comment.