Browse Source

metal: Fix a typo preventing iOS compilation...

Alex Szpakowski 7 years ago
parent
commit
07f08b47ff
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/render/metal/SDL_render_metal.m

+ 2 - 2
src/render/metal/SDL_render_metal.m

@@ -151,7 +151,7 @@ typedef struct METAL_PipelineCache
 @end
 
 @implementation METAL_RenderData
-#if !__has_feature(obc_arc)
+#if !__has_feature(objc_arc)
 - (void)dealloc
 {
     [_mtldevice release];
@@ -177,7 +177,7 @@ typedef struct METAL_PipelineCache
 @end
 
 @implementation METAL_TextureData
-#if !__has_feature(obc_arc)
+#if !__has_feature(objc_arc)
 - (void)dealloc
 {
     [_mtltexture release];