mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-02-25 04:16:54 +00:00
cocoa: Fix assert to use SDL_assert
This commit is contained in:
parent
a73dacbf62
commit
0442d19fc8
|
@ -121,7 +121,7 @@ Cocoa_Mtl_GetDrawableSize(SDL_Window * window, int * w, int * h)
|
|||
SDL_cocoametalview* metalview = [view viewWithTag:METALVIEW_TAG];
|
||||
if (metalview) {
|
||||
CAMetalLayer *layer = (CAMetalLayer*)metalview.layer;
|
||||
assert(layer != NULL);
|
||||
SDL_assert(layer != NULL);
|
||||
if (w) {
|
||||
*w = layer.drawableSize.width;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue