mirror of
https://github.com/encounter/SDL.git
synced 2025-06-01 12:11:33 +00:00
kmsdrm: only negative devindex's are not allowed
ad874536 removed an unnecessary limit as we *can* have a devindex greater than 99, this error message does not reflect the support for values greater than 99.
This commit is contained in:
parent
508cc225a7
commit
57b5c9107e
@ -236,7 +236,7 @@ KMSDRM_CreateDevice(void)
|
||||
|
||||
devindex = get_driindex();
|
||||
if (devindex < 0) {
|
||||
SDL_SetError("devindex (%d) must be between 0 and 99.", devindex);
|
||||
SDL_SetError("devindex (%d) must not be negative.", devindex);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user