From d443c1bb30bf25bfc7f2ca64233562db9b372c45 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 2 Apr 2022 16:37:04 -0700 Subject: [PATCH] Switch: Fix GL build typo. --- Common/GL/GLInterface/GLInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/GL/GLInterface/GLInterface.cpp b/Common/GL/GLInterface/GLInterface.cpp index 389f650ae7..ad2e781200 100644 --- a/Common/GL/GLInterface/GLInterface.cpp +++ b/Common/GL/GLInterface/GLInterface.cpp @@ -26,7 +26,7 @@ cInterfaceBase* HostGL_CreateGLInterface(){ #ifdef __ANDROID__ return new cInterfaceEGLAndroid; - #elif if PPSSPP_PLATFORM(SWITCH) + #elif PPSSPP_PLATFORM(SWITCH) return new cInterfaceEGLSwitch; #elif defined(__APPLE__) return new cInterfaceAGL;