Commit 4b86de31 authored by Sam Lantinga's avatar Sam Lantinga

Fixed warning on Windows

parent 0f59f2fd
...@@ -137,7 +137,7 @@ create_arrow_cursor() ...@@ -137,7 +137,7 @@ create_arrow_cursor()
} }
} }
} }
sscanf(arrow[4 + row], "%d,%d", &hot_x, &hot_y); SDL_sscanf(arrow[4 + row], "%d,%d", &hot_x, &hot_y);
return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y); return SDL_CreateCursor(data, mask, 32, 32, hot_x, hot_y);
} }
......
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