fix broken colour wait cursor on Mac OS X (#4729)
This commit is contained in:
parent
7c1dea238c
commit
3538f02bc0
3 changed files with 1 additions and 1 deletions
Before Width: | Height: | Size: 248 B After Width: | Height: | Size: 248 B |
BIN
images/cursors/wait-alt.png
Normal file
BIN
images/cursors/wait-alt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -89,7 +89,7 @@ SDL_Cursor* cache[cursor::NUM_CURSORS] = { NULL, NULL, NULL, NULL };
|
|||
|
||||
//this array must have members corresponding to cursor::CURSOR_TYPE enum members
|
||||
#ifdef __APPLE__
|
||||
const std::string images[cursor::NUM_CURSORS] = { "normal.png", "wait-16x16.png", "move.png", "attack.png", "select.png" };
|
||||
const std::string images[cursor::NUM_CURSORS] = { "normal.png", "wait-alt.png", "move.png", "attack.png", "select.png" };
|
||||
#else
|
||||
const std::string images[cursor::NUM_CURSORS] = { "normal.png", "wait.png", "move.png", "attack.png", "select.png" };
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue