From 0f04abb9de0551548904ea89f8c89e5953a09843 Mon Sep 17 00:00:00 2001 From: superp00t Date: Sat, 16 Dec 2023 21:03:53 -0500 Subject: [PATCH] fix(gx): remove stub NewGLSDL when compiling for macOS --- src/gx/CGxDevice.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/gx/CGxDevice.cpp b/src/gx/CGxDevice.cpp index 4057602..daf1b2c 100644 --- a/src/gx/CGxDevice.cpp +++ b/src/gx/CGxDevice.cpp @@ -132,10 +132,6 @@ CGxDevice* CGxDevice::NewGLSDL() { auto m = SMemAlloc(sizeof(CGxDeviceGLSDL), __FILE__, __LINE__, 0x0); return new (m) CGxDeviceGLSDL(); } -#else -CGxDevice* CGxDevice::NewGLSDL() { - return nullptr; -} #endif uint32_t CGxDevice::PrimCalcCount(EGxPrim primType, uint32_t count) {