Skip to content

Commit

Permalink
metal: Fix a typo preventing iOS compilation...
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Jan 2, 2018
1 parent 1cc6603 commit 07f08b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/render/metal/SDL_render_metal.m
Expand Up @@ -151,7 +151,7 @@ @interface METAL_RenderData : NSObject
@end

@implementation METAL_RenderData
#if !__has_feature(obc_arc)
#if !__has_feature(objc_arc)
- (void)dealloc
{
[_mtldevice release];
Expand All @@ -177,7 +177,7 @@ @interface METAL_TextureData : NSObject
@end

@implementation METAL_TextureData
#if !__has_feature(obc_arc)
#if !__has_feature(objc_arc)
- (void)dealloc
{
[_mtltexture release];
Expand Down

0 comments on commit 07f08b4

Please sign in to comment.