fixed interaction bug

This commit is contained in:
Anakin
2016-09-08 11:36:57 +02:00
parent ee73c16e1f
commit 11a8de82d4
3 changed files with 8 additions and 8 deletions

View File

@@ -16,9 +16,9 @@
/////////////////////////////////////////////////////////////////////////
// public constructor/destructor
OpenGLController& OpenGLController::getInstance(int oglMajor, int oglMinor)
OpenGLController* OpenGLController::getInstance(int oglMajor, int oglMinor)
{
static OpenGLController instace(oglMajor, oglMinor);
static OpenGLController *instace = new OpenGLController(oglMajor, oglMinor);
return instace;
}