summaryrefslogtreecommitdiffhomepage
path: root/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'projects/VS2017.UWP/raylib.App.UWP/BaseApp.h')
-rw-r--r--projects/VS2017.UWP/raylib.App.UWP/BaseApp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h b/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
index 4e71ba8a..7f59c3de 100644
--- a/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
+++ b/projects/VS2017.UWP/raylib.App.UWP/BaseApp.h
@@ -59,7 +59,7 @@ using namespace Windows::Graphics::Display;
using namespace Microsoft::WRL;
using namespace Platform;
-extern "C" { EGLNativeWindowType uwpWindow; };
+extern "C" { EGLNativeWindowType handle; };
/*
TODO list:
@@ -117,7 +117,7 @@ public:
// The CoreWindow has been created, so EGL can be initialized.
- uwpWindow = (EGLNativeWindowType)window;
+ handle = (EGLNativeWindowType)window;
InitWindow(width, height, NULL);
}