Mercurial > repos > blastem
view blastem.h @ 1820:70a1304b432b
Fix crash that occurs when changing video screen settings if the emulator window is currently fullscreen. Add a little more error handling to Open GL code
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 31 Mar 2019 14:53:29 -0700 |
parents | 7121daaa48c2 |
children | 30f2821ffd65 |
line wrap: on
line source
#ifndef BLASTEM_H_ #define BLASTEM_H_ #include "tern.h" #include "system.h" extern int headless; extern int exit_after; 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; extern uint8_t use_native_states; void reload_media(void); void lockon_media(char *lock_on_path); void init_system_with_media(const char *path, system_type force_stype); void apply_updated_config(void); #endif //BLASTEM_H_