Select Git revision
SDL_sysevents.c.patch
Forked from
einsteinathome / graphicsframework
62 commits behind the upstream repository.
-
Oliver Bock authored
* The BOINC v6 screensaver expects the graphics app to bear a specific window class name * It exits if the graphics app can't be found by that name! * Ergo: patch SDL's default class name to trick (satisfy) BOINC :-)
Oliver Bock authored* The BOINC v6 screensaver expects the graphics app to bear a specific window class name * It exits if the graphics app can't be found by that name! * Ergo: patch SDL's default class name to trick (satisfy) BOINC :-)
SDL_sysevents.c.patch 352 B
--- SDL_sysevents.c 2009-04-17 17:18:07.000000000 +0200
+++ SDL_sysevents.c.new 2009-04-17 17:14:41.000000000 +0200
@@ -799,7 +799,7 @@
#define CS_BYTEALIGNCLIENT 0
#endif
if ( ! name && ! SDL_Appname ) {
- name = "SDL_app";
+ name = "BOINC_app";
SDL_Appstyle = CS_BYTEALIGNCLIENT;
SDL_Instance = hInst ? hInst : SDL_GetModuleHandle();
}