SDL_Get*Driver() functions: Set error message on failure

This commit is contained in:
Petar Popovic
2025-02-13 14:06:04 +01:00
committed by Sam Lantinga
parent ed0a03e9b5
commit c16b7bcb7a
4 changed files with 4 additions and 2 deletions

View File

@@ -74,6 +74,7 @@ const char *SDL_GetCameraDriver(int index)
if (index >= 0 && index < SDL_GetNumCameraDrivers()) {
return bootstrap[index]->name;
}
SDL_InvalidParamError("index");
return NULL;
}