Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • mingw_gcc44
  • release_ABP1_012
  • release_ABP1_008
  • release_ABP1_006
  • release_ABP1_007
  • release_ABP1_005
  • release_ABP1_004
  • release_ABP1_003
  • pre_release_0.15
  • release_ABP1_001
  • release_ABP1_002
  • pre_release_0.13
  • pre_release_0.14
  • pre_release_0.11
  • pre_release_0.12
  • pre_release_0.10
  • pre_release_0.09
  • pre_release_0.08
19 results

SDL_sysevents.c.patch

Blame
  • Forked from einsteinathome / graphicsframework
    62 commits behind the upstream repository.
    • Oliver Bock's avatar
      bf200e93
      Added patch for SDL · bf200e93
      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 :-)
      bf200e93
      History
      Added patch for SDL
      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();
     	}