diff options
author | Michael Pavone <pavone@retrodev.com> | 2018-05-05 23:30:40 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2018-05-05 23:30:40 -0700 |
commit | 558e58d159eaa027e148f70347bbb6b8138a0781 (patch) | |
tree | 527cdff832d8468dc709552248b2b8cc27a5cf05 /blastem.c | |
parent | f084bcbdcb88daafd790b42a5c0fd60cd6e5db38 (diff) |
Refactor to split device bindings from IO emulation code
Diffstat (limited to 'blastem.c')
-rw-r--r-- | blastem.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,7 @@ #include "terminal.h" #include "arena.h" #include "config.h" +#include "bindings.h" #include "menu.h" #include "zip.h" #ifndef DISABLE_NUKLEAR @@ -562,6 +563,7 @@ int main(int argc, char ** argv) render_init(width, height, "BlastEm", fullscreen); render_set_drag_drop_handler(on_drag_drop); } + set_bindings(); uint8_t menu = !loaded; uint8_t use_nuklear = 0; |