We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d82b258 commit 88434b7Copy full SHA for 88434b7
3 files changed
Core/LogicalElements/Splitter.h
@@ -18,6 +18,7 @@
18
#define LOGIGATES_SPLITTER_H
19
20
#include <iostream>
21
+#include <algorithm>
22
#include "Base.h"
23
#include "../../UI/Images.h"
24
UI/Renderer.cpp
@@ -32,8 +32,11 @@ namespace LogiGates::UI {
32
33
windowWidth = window->getWidth();
34
windowHeight = window->getHeight();
35
+
36
+#ifdef __APPLE__
37
lastWindowWidth = windowWidth;
38
lastWindowHeight = windowHeight;
39
+#endif
40
}
41
42
Renderer::~Renderer() {
thirdparty/imgui/imgui_impl_sdl2.h
@@ -26,6 +26,10 @@
26
#include "imgui.h" // IMGUI_IMPL_API
27
#ifndef IMGUI_DISABLE
28
29
+#ifdef _WIN32
30
+#include <windows.h>
31
struct SDL_Window;
struct SDL_Renderer;
struct _SDL_GameController;
0 commit comments