瀏覽代碼

Exceptions should be errors, not debug messages.

master
Ben Kurtovic 9 年之前
父節點
當前提交
e25bf5fbd7
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/iomanager.c

+ 1
- 1
src/iomanager.c 查看文件

@@ -19,7 +19,7 @@ void iomanager_emulate(GameGear *gg)
// TODO: use SDL events
while (1) {
if (gamegear_simulate(gg)) {
DEBUG("IOManager caught exception: %s", gamegear_get_exception(gg))
ERROR("caught exception: %s", gamegear_get_exception(gg))
#ifdef DEBUG_MODE
z80_dump_registers(&gg->cpu);
#endif


Loading…
取消
儲存