Remove unneeded OpenGL loading function code (#1006)

This commit is contained in:
WaluigiWare64
2021-02-17 20:53:07 +00:00
committed by GitHub
parent 64c6654d94
commit 712919ec41
4 changed files with 0 additions and 19 deletions

View File

@ -63,7 +63,6 @@
char* EmuDirectory;
void emuStop();
void* oglGetProcAddress(const char* proc);
namespace Platform
@ -259,11 +258,6 @@ bool Mutex_TryLock(Mutex* mutex)
return ((QMutex*) mutex)->try_lock();
}
void* GL_GetProcAddress(const char* proc)
{
return oglGetProcAddress(proc);
}
bool MP_Init()
{