Skip to content

Commit

Permalink
Fixed building on Windows CE
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 15, 2007
1 parent 5f9f2d7 commit eff5e03
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/video/windib/SDL_dibvideo.c
Expand Up @@ -939,6 +939,7 @@ int DIB_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
entry->peBlue = colors[i].b;
entry->peFlags = PC_NOCOLLAPSE;
}
#ifdef SYSPAL_NOSTATIC
/* Check to make sure black and white are in position */
if ( GetSystemPaletteUse(hdc) != SYSPAL_NOSTATIC256 ) {
moved_entries += CheckPaletteEntry(screen_logpal, 0, 0x00, 0x00, 0x00);
Expand All @@ -950,9 +951,12 @@ int DIB_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
in the desired palette, set those entries (10-245) and
then map everything into the new system palette.
*/
#endif

#ifndef _WIN32_WCE
/* Copy the entries into the system palette */
UnrealizeObject(screen_pal);
#endif
SetPaletteEntries(screen_pal, 0, screen_logpal->palNumEntries, screen_logpal->palPalEntry);
SelectPalette(hdc, screen_pal, FALSE);
RealizePalette(hdc);
Expand Down Expand Up @@ -1156,6 +1160,7 @@ void DIB_VideoQuit(_THIS)
/* Exported for the windows message loop only */
static void DIB_GrabStaticColors(HWND window)
{
#ifdef SYSPAL_NOSTATIC
HDC hdc;

hdc = GetDC(window);
Expand All @@ -1164,14 +1169,17 @@ static void DIB_GrabStaticColors(HWND window)
SetSystemPaletteUse(hdc, SYSPAL_NOSTATIC);
}
ReleaseDC(window, hdc);
#endif
}
static void DIB_ReleaseStaticColors(HWND window)
{
#ifdef SYSPAL_NOSTATIC
HDC hdc;

hdc = GetDC(window);
SetSystemPaletteUse(hdc, SYSPAL_STATIC);
ReleaseDC(window, hdc);
#endif
}
static void DIB_Activate(_THIS, BOOL active, BOOL minimized)
{
Expand All @@ -1191,7 +1199,9 @@ static void DIB_RealizePalette(_THIS)
HDC hdc;

hdc = GetDC(SDL_Window);
#ifndef _WIN32_WCE
UnrealizeObject(screen_pal);
#endif
SelectPalette(hdc, screen_pal, FALSE);
if ( RealizePalette(hdc) ) {
InvalidateRect(SDL_Window, NULL, FALSE);
Expand Down

0 comments on commit eff5e03

Please sign in to comment.