Просмотр исходного кода

Fixed mistyped Renderer call in SDL Core

Ivan Safrin 12 лет назад
Родитель
Сommit
816680a199
1 измененных файлов с 1 добавлено и 1 удалено
  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());	
 }