summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/area.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/area.c b/src/area.c
index 2e55fe9..e605c6c 100644
--- a/src/area.c
+++ b/src/area.c
@@ -61,8 +61,7 @@ init_map_layers(struct area *area)
SDL_FillRect(area->map_layers[l], &dstrect,
SDL_MapRGB(area->map_layers[l]->format,
0xFC, 0x00, 0xFF));
- SDL_SetColorKey(area->map_layers[l], SDL_SRCCOLORKEY |
- SDL_RLEACCEL,
+ SDL_SetColorKey(area->map_layers[l], SDL_SRCCOLORKEY,
SDL_MapRGB(area->map_layers[l]->format,
0xFC, 0x00, 0xFF));
}