indent cursor.c

Indentation tweaked
This commit is contained in:
Bill Kendrick 2017-10-15 10:50:31 -07:00
parent 18b855169b
commit ba686d601b

View file

@ -84,8 +84,8 @@ void do_setcursor(SDL_Cursor * c)
void free_cursor(SDL_Cursor ** cursor) void free_cursor(SDL_Cursor ** cursor)
{ {
if (*cursor) if (*cursor)
{ {
SDL_FreeCursor(*cursor); SDL_FreeCursor(*cursor);
*cursor = NULL; *cursor = NULL;
} }
} }