about summary refs log tree commit diff
path: root/config.h
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-24 20:58:06 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2021-07-24 20:58:06 +0100
commit5d8e1534937fefdf557dbde091a4bbfb34d603f1 (patch)
tree85b5cf473bd0209ad15762760ec5de6594d4d6ac /config.h
parentFeature: Implemented various instructions and added a few roms (diff)
downloadCHIP8-Emulator-5d8e1534937fefdf557dbde091a4bbfb34d603f1.tar.gz
CHIP8-Emulator-5d8e1534937fefdf557dbde091a4bbfb34d603f1.tar.bz2
CHIP8-Emulator-5d8e1534937fefdf557dbde091a4bbfb34d603f1.zip
Misc: Added the timer thread variable to the emulator struct
This way we can keep track of the thread to join it on
emulator_deinitialise()
Diffstat (limited to 'config.h')
-rw-r--r--config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.h b/config.h
index b318965..38d0ce7 100644
--- a/config.h
+++ b/config.h
@@ -2,6 +2,7 @@
 #define _CONFIG_H_
 
 #define DEBUG 1
+//#define STOP_ON_INFINITE_LOOP
 
 #define SCREEN_WIDTH 852
 #define SCREEN_HEIGHT 480