One last missing !defined(SIMULATOR) for chip8
Change-Id: Iab2d9150126f6c611604469d105186b936825012
This commit is contained in:
parent
e1c09cd5bd
commit
1bc89bde8c
1 changed files with 1 additions and 1 deletions
|
@ -1540,7 +1540,7 @@ static bool chip8_run(const char* file)
|
|||
rb->lcd_drawrect(CHIP8_X-1,CHIP8_Y-1,CHIP8_LCDWIDTH+2,CHIP8_HEIGHT+2);
|
||||
#endif
|
||||
rb->lcd_update();
|
||||
#if (CONFIG_CODEC != SWCODEC)
|
||||
#if (CONFIG_CODEC != SWCODEC) && !defined(SIMULATOR)
|
||||
/* init sound */
|
||||
is_playing = rb->mp3_is_playing(); /* would we disturb playback? */
|
||||
if (!is_playing) /* no? then we can make sound */
|
||||
|
|
Loading…
Reference in a new issue