summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-08-21 19:19:20 +0930
committerDaniel Jones <admin@danieljon.es>2020-08-21 19:19:20 +0930
commite3e8912dae70da1fff03607e68610d21adf21002 (patch)
tree9c9522d7b0791a13304d8d974a281a46ff3ce92e /main.c
parent200bd42550a94487d6c0434c3ad8781b18a7a104 (diff)
downloadchip8-e3e8912dae70da1fff03607e68610d21adf21002.tar.gz
chip8-e3e8912dae70da1fff03607e68610d21adf21002.zip
correct Fx55 and fx6 opcodes
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index ae6f34d..b00d5b2 100644
--- a/main.c
+++ b/main.c
@@ -205,7 +205,7 @@ int main(int argc, char *argv[])
init_video();
- const int fps = 500;
+ const int fps = 900;
const int frame_delay = 1000/fps;
uint32_t frame_start;
uint32_t frame_time;