Преглед изворни кода

SDL_GetMouseNameForID(): Set an error message for invalid mouse IDs.

Petar Popovic пре 10 месеци
родитељ
комит
8ce176b59a
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      src/events/SDL_mouse.c

+ 1 - 0
src/events/SDL_mouse.c

@@ -428,6 +428,7 @@ const char *SDL_GetMouseNameForID(SDL_MouseID instance_id)
 {
     int mouse_index = SDL_GetMouseIndex(instance_id);
     if (mouse_index < 0) {
+        SDL_SetError("Mouse %" SDL_PRIu32 " not found", instance_id);
         return NULL;
     }
     return SDL_GetPersistentString(SDL_mice[mouse_index].name);