Ne methods Draw_ShowCursor and Input_GetPointerDown
This commit is contained in:
12
src/Draw.c
12
src/Draw.c
@@ -1155,3 +1155,15 @@ void Draw_SaveScreenshoot(char *filename) {
|
||||
free(pixelData);
|
||||
#endif
|
||||
}
|
||||
|
||||
/////////////////////////////
|
||||
// Draw_ShowCursor
|
||||
//
|
||||
//
|
||||
void Draw_ShowCursor(int showCursor) {
|
||||
if (showCursor) {
|
||||
SDL_ShowCursor(31);
|
||||
} else {
|
||||
SDL_ShowCursor(0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user