Browse Source

Fixed mistyped Renderer call in SDL Core

Ivan Safrin 12 years ago
parent
commit
816680a199
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Core/Contents/Source/PolySDLCore.cpp

+ 1 - 1
Core/Contents/Source/PolySDLCore.cpp

@@ -117,7 +117,7 @@ SDLCore::SDLCore(PolycodeView *view, int _xRes, int _yRes, bool fullScreen, bool
 	//  clipboard events and respond to them)
 	init_scrap();
 
-	((OpenGLRenderer*)renderer)->init();
+	((OpenGLRenderer*)renderer)->Init();
 	CoreServices::getInstance()->installModule(new GLSLShaderModule());	
 }