diff options
Diffstat (limited to 'src/ahoy/gui.h')
-rw-r--r-- | src/ahoy/gui.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ahoy/gui.h b/src/ahoy/gui.h index d3953b5..0760437 100644 --- a/src/ahoy/gui.h +++ b/src/ahoy/gui.h @@ -5,10 +5,11 @@ #include <stdint.h> typedef enum { - GUI_RUNNING, - GUI_PAUSED, - GUI_STOP, -} guistate; + ES_PAUSED, + ES_RESET, + ES_RUNNING, + ES_STOP, +} emustate; void wininit(void); void winfree(void); @@ -16,6 +17,6 @@ void windrw(void); void auplay(bool); void readkb(void); -extern guistate gs; +extern emustate estate; #endif /* !AHOY_AHOY_GUI_H */ |