From 2f2fd0a0d9956abe2165246531c5dcd2aa5a6eca Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 13 Feb 2011 01:31:07 -0800 Subject: [PATCH] Whoops, work in progress, didn't mean to commit. --- src/SDL_compat.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/SDL_compat.c b/src/SDL_compat.c index 43175e404..cabf7747a 100644 --- a/src/SDL_compat.c +++ b/src/SDL_compat.c @@ -32,7 +32,6 @@ static SDL_Window *SDL_VideoWindow = NULL; -static SDL_Surface *SDL_WindowSurface = NULL; static SDL_Surface *SDL_VideoSurface = NULL; static SDL_Surface *SDL_ShadowSurface = NULL; static SDL_Surface *SDL_PublicSurface = NULL; @@ -411,9 +410,9 @@ SDL_ResizeVideoMode(int width, int height, int bpp, Uint32 flags) return 0; } - /* Get the surface for the window */ - SDL_WindowSurface = SDL_GetWindowSurface(SDL_VideoWindow); - if (!SDL_WindowSurface) { + /* Destroy the screen texture and recreate it */ + SDL_VideoSurface = SDL_GetWindowSurface(SDL_VideoWindow); + if (!SDL_VideoSurface) { return -1; } @@ -550,8 +549,8 @@ SDL_SetVideoMode(int width, int height, int bpp, Uint32 flags) } /* Create the screen surface */ - SDL_WindowSurface = SDL_GetWindowSurface(SDL_VideoWindow); - if (!SDL_WindowSurface) { + SDL_VideoSurface = SDL_GetWindowSurface(SDL_VideoWindow); + if (!SDL_VideoSurface) { return NULL; } SDL_VideoSurface->flags |= surface_flags;