GL/Context: Drop unnecessary macro check

This commit is contained in:
Connor McLaughlin 2021-03-08 17:28:34 +10:00
parent fdc7066ead
commit 535fef88c5
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ std::unique_ptr<GL::Context> Context::Create(const WindowInfo& wi, const Version
std::unique_ptr<Context> context;
#if defined(WIN32) && !defined(_M_ARM64)
context = ContextWGL::Create(wi, versions_to_try, num_versions_to_try);
#elif defined(__APPLE__) && !defined(LIBRETRO)
#elif defined(__APPLE__)
context = ContextAGL::Create(wi, versions_to_try, num_versions_to_try);
#elif defined(ANDROID)
#ifdef USE_EGL