소스 검색

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


불러오는 중...
취소
저장