mirror of
https://github.com/yawut/SDL.git
synced 2026-08-28 19:54:17 -05:00
*** empty log message ***
This commit is contained in:
@@ -37,12 +37,14 @@ static char rcsid =
|
||||
|
||||
#define WINDIB_FULLSCREEN() \
|
||||
( \
|
||||
SDL_VideoSurface && \
|
||||
((SDL_VideoSurface->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN) && \
|
||||
(((SDL_VideoSurface->flags & SDL_OPENGL ) == SDL_OPENGL ) || \
|
||||
(strcmp(this->name, "windib") == 0)) \
|
||||
)
|
||||
#define DDRAW_FULLSCREEN() \
|
||||
( \
|
||||
SDL_VideoSurface && \
|
||||
((SDL_VideoSurface->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN) && \
|
||||
((SDL_VideoSurface->flags & SDL_OPENGL ) != SDL_OPENGL ) && \
|
||||
(strcmp(this->name, "directx") == 0) \
|
||||
|
||||
@@ -190,10 +190,6 @@ LONG CALLBACK WinMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||
BOOL minimized;
|
||||
Uint8 appstate;
|
||||
|
||||
if ( ! this->screen ) {
|
||||
/* What do we do when we get the screen? */
|
||||
return(0);
|
||||
}
|
||||
minimized = HIWORD(wParam);
|
||||
if ( !minimized && (LOWORD(wParam) != WA_INACTIVE) ) {
|
||||
/* Gain the following states */
|
||||
|
||||
Reference in New Issue
Block a user