Fixed building with an older Mac OS X SDK

This commit is contained in:
Sam Lantinga 2017-08-28 20:52:05 -07:00
parent ebe9688dd9
commit 8e5f46fa1d
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@
/* Return a Metal-compatible layer. */
+ (Class)layerClass
{
return [CAMetalLayer class];
return NSClassFromString(@"CAMetalLayer");
}
/* Indicate the view wants to draw using a backing layer instead of drawRect. */