Fixed kmsdrm using standard C functions instead of SDL functions
parent
63f307fe1f
commit
45cbee81df
|
@ -548,7 +548,7 @@ KMSDRM_CrtcGetPropId(uint32_t drm_fd,
|
||||||
if (!drm_prop)
|
if (!drm_prop)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (strcmp(drm_prop->name, name) == 0)
|
if (SDL_strcmp(drm_prop->name, name) == 0)
|
||||||
prop_id = drm_prop->prop_id;
|
prop_id = drm_prop->prop_id;
|
||||||
|
|
||||||
KMSDRM_drmModeFreeProperty(drm_prop);
|
KMSDRM_drmModeFreeProperty(drm_prop);
|
||||||
|
@ -599,7 +599,7 @@ KMSDRM_ConnectorCheckVrrCapable(uint32_t drm_fd,
|
||||||
if (!drm_prop)
|
if (!drm_prop)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (strcasecmp(drm_prop->name, name) == 0) {
|
if (SDL_strcasecmp(drm_prop->name, name) == 0) {
|
||||||
prop_value = props->prop_values[i];
|
prop_value = props->prop_values[i];
|
||||||
found = SDL_TRUE;
|
found = SDL_TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue