@@ -67,7 +67,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
#endif
#ifdef ROCKET_PLATFORM_WIN32
- DoAllocConsole();
+ AllocConsole();
int window_width = 1024;
@@ -68,7 +68,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
@@ -46,7 +46,7 @@
int main(int argc, char **argv)
{
@@ -70,7 +70,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
@@ -79,7 +79,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
@@ -119,7 +119,7 @@ bool ShellRenderInterfaceOpenGL::AttachToNative(void *nativeWindow)
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
RECT crect;
- GetClientRect(this->window_handle, &crect)
+ GetClientRect(this->window_handle, &crect);
glOrtho(0, (crect.right - crect.left), (crect.bottom - crect.top), 0, -1, 1);
glMatrixMode(GL_MODELVIEW);
@@ -54,7 +54,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
ShellRenderInterfaceOpenGL opengl_renderer;
@@ -55,7 +55,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
@@ -51,7 +51,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
@@ -52,7 +52,7 @@ int main(int ROCKET_UNUSED_PARAMETER(argc), char** ROCKET_UNUSED_PARAMETER(argv)
@@ -1,6 +0,0 @@
-from _rocketcore import *
-
-try:
- from _rocketcontrols import *
-except ImportError:
- pass