diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-12-19 13:28:18 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-12-19 13:28:18 -0800 |
commit | 7b8127d36a9c6a824da4f1709bdee12c40c631a5 (patch) | |
tree | 33d0e6914620deaee1296f1672091c5b79793778 /blastem.h | |
parent | 11861fca5815015b2afb712f328195c5f7bc231e (diff) |
Mostly working changes to allow support for multiple emulated system types in main blastem program
Diffstat (limited to 'blastem.h')
-rw-r--r-- | blastem.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2,6 +2,7 @@ #define BLASTEM_H_ #include "tern.h" +#include "system.h" extern int headless; extern int exit_after; @@ -9,8 +10,10 @@ extern int z80_enabled; extern int frame_limit; extern tern_node * config; +extern system_header *current_system; extern char *save_state_path; +extern char *save_filename; #define QUICK_SAVE_SLOT 10 #endif //BLASTEM_H_ |