1
0
mirror of https://github.com/simh/simh.git synced 2026-04-17 08:41:28 +00:00

VIDEO: Restructured SDL threading model to perform all event processing in the main thread and run the application main logic in a different thread.

This commit is contained in:
Mark Pizzolato
2015-02-03 14:49:45 -08:00
parent 6ccd7a50ef
commit 4cb4477077
2 changed files with 173 additions and 36 deletions

View File

@@ -201,6 +201,10 @@ void vid_set_cursor_position (int32 x, int32 y); /* cursor position (set
#define SIM_VID_DBG_KEY 0x04000000
#define SIM_VID_DBG_VIDEO 0x08000000
#if HAVE_LIBSDL
#include <SDL.h>
#endif /* HAVE_LIBSDL */
#endif /* USE_SIM_VIDEO */
#endif