From 6b0a2a68947ceeb1bfc829ee8d2acb9a04e320dc Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 7 Dec 2008 22:29:58 +0000 Subject: [PATCH] Better default format for Mac OS X --- src/SDL_compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL_compat.c b/src/SDL_compat.c index 925df7a94..922f96b2a 100644 --- a/src/SDL_compat.c +++ b/src/SDL_compat.c @@ -618,7 +618,7 @@ SDL_SetVideoMode(int width, int height, int bpp, Uint32 flags) if (!SDL_VideoTexture) { SDL_VideoTexture = - SDL_CreateTexture(SDL_PIXELFORMAT_ABGR8888, + SDL_CreateTexture(SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STREAMING, width, height); } if (!SDL_VideoTexture) {