Explorar el Código

Exceptions should be errors, not debug messages.

master
Ben Kurtovic hace 9 años
padre
commit
e25bf5fbd7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/iomanager.c

+ 1
- 1
src/iomanager.c Ver fichero

@@ -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


Cargando…
Cancelar
Guardar