Explorar o código

Fixed kmsdrm using standard C functions instead of SDL functions

Sam Lantinga %!s(int64=3) %!d(string=hai) anos
pai
achega
45cbee81df
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/video/kmsdrm/SDL_kmsdrmvideo.c

+ 2 - 2
src/video/kmsdrm/SDL_kmsdrmvideo.c

@@ -548,7 +548,7 @@ KMSDRM_CrtcGetPropId(uint32_t drm_fd,
         if (!drm_prop)
             continue;
 
-        if (strcmp(drm_prop->name, name) == 0)
+        if (SDL_strcmp(drm_prop->name, name) == 0)
             prop_id = drm_prop->prop_id;
 
         KMSDRM_drmModeFreeProperty(drm_prop);
@@ -599,7 +599,7 @@ KMSDRM_ConnectorCheckVrrCapable(uint32_t drm_fd,
         if (!drm_prop)
             continue;
 
-        if (strcasecmp(drm_prop->name, name) == 0) {
+        if (SDL_strcasecmp(drm_prop->name, name) == 0) {
             prop_value = props->prop_values[i];
             found = SDL_TRUE;
         }