Commit f1ac04f2 authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

wined3d: Add a missing break.

parent 2190601c
...@@ -598,6 +598,7 @@ void surface_prepare_map_memory(struct wined3d_surface *surface) ...@@ -598,6 +598,7 @@ void surface_prepare_map_memory(struct wined3d_surface *surface)
case SFLAG_INDIB: case SFLAG_INDIB:
if (!surface->dib.bitmap_data) if (!surface->dib.bitmap_data)
ERR("Map binding is set to SFLAG_INDIB but surface->dib.bitmap_data is NULL.\n"); ERR("Map binding is set to SFLAG_INDIB but surface->dib.bitmap_data is NULL.\n");
break;
case SFLAG_INSYSMEM: case SFLAG_INSYSMEM:
surface_prepare_system_memory(surface); surface_prepare_system_memory(surface);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment