summaryrefslogtreecommitdiff
path: root/src/guichan/sdl/sdlpixel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guichan/sdl/sdlpixel.hpp')
-rw-r--r--src/guichan/sdl/sdlpixel.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/guichan/sdl/sdlpixel.hpp b/src/guichan/sdl/sdlpixel.hpp
index 49686ebc1..a5d9ca5a1 100644
--- a/src/guichan/sdl/sdlpixel.hpp
+++ b/src/guichan/sdl/sdlpixel.hpp
@@ -93,6 +93,9 @@ namespace gcn
color = *(Uint32 *)p;
break;
+ default:
+ color = *p;
+ break;
}
unsigned char r,g,b,a;
@@ -148,6 +151,9 @@ namespace gcn
case 4:
*(Uint32 *)p = pixel;
break;
+
+ default:
+ break;
}
SDL_UnlockSurface(surface);
@@ -251,6 +257,8 @@ namespace gcn
case 4:
*(Uint32 *)p = SDLAlpha32(pixel, *(Uint32 *)p, color.a);
break;
+ default:
+ break;
}
SDL_UnlockSurface(surface);