From 449936e461ac15325453cf09c892d41c8e0fec24 Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Sun, 10 Sep 2017 15:19:50 +0000 Subject: [PATCH] SheepShaver: added --sdlrender option, when on Unix --- SheepShaver/src/Unix/prefs_unix.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SheepShaver/src/Unix/prefs_unix.cpp b/SheepShaver/src/Unix/prefs_unix.cpp index 7f89a107..2a81e7bd 100644 --- a/SheepShaver/src/Unix/prefs_unix.cpp +++ b/SheepShaver/src/Unix/prefs_unix.cpp @@ -41,6 +41,9 @@ prefs_desc platform_prefs_items[] = { {"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, #endif {"idlewait", TYPE_BOOLEAN, false, "sleep when idle"}, +#ifdef USE_SDL_VIDEO + {"sdlrender", TYPE_STRING, false, "SDL_Renderer driver (\"auto\", \"software\" (may be faster), etc.)"}, +#endif {NULL, TYPE_END, false, NULL} // End of list };