Skip to content

Commit

Permalink
insert commit message here
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon committed Jan 21, 2018
1 parent be0ab54 commit 58b248d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ void Emulator::start_gba_mode(bool throw_exception)
power_on();
WAITCNT = 0;
gba_mode = true;
arm7.gba_boot(false);
arm7.gba_boot(true);
//debug();
//Allocate VRAM C and D as 256 KB work RAM
gpu.set_VRAMCNT_C(0x82);
Expand Down
1 change: 1 addition & 0 deletions src/gba/gbagpu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ void GPU::gba_run(uint64_t c)
new_cycles -= 1232;
}
cycles = new_cycles;
printf("\nCycles: %lld", cycles);
}

void GPU_2D_Engine::gba_draw_scanline()
Expand Down

0 comments on commit 58b248d

Please sign in to comment.