From f5db354aecba8371a1b41a4f33caca98ac74df17 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 23 Aug 2023 15:07:51 +0200 Subject: [PATCH] source/Window/Window.cpp: call PlatformApplication::createWindow() instead of PlatformWindow::make() --- source/Window/Window.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/Window/Window.cpp b/source/Window/Window.cpp index 6efe7b7..96d4e96 100644 --- a/source/Window/Window.cpp +++ b/source/Window/Window.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include @@ -21,7 +22,7 @@ Window::Window() m_fmode = WINDOWED; m_context = GLContext::create(); - m_impl = PlatformWindow::make(this); + m_impl = PlatformApplication::get()->createWindow(this); } Window::~Window()