There was an error while loading. Please reload this page.
1 parent 31e46f4 commit 72f2556Copy full SHA for 72f2556
2 files changed
source/gui/imgui/src/App.cpp
@@ -7,6 +7,13 @@
7
#include <al/io/al_AudioIO.hpp>
8
9
#include <GLFW/glfw3.h>
10
+
11
+// GL_CLAMP_TO_EDGE is OpenGL 1.2+. Windows <GL/gl.h> only provides 1.1.
12
+// Define the value here if the header hasn't supplied it.
13
+#ifndef GL_CLAMP_TO_EDGE
14
+# define GL_CLAMP_TO_EDGE 0x812F
15
+#endif
16
17
#include "miniLogo_data.h"
18
#include "stb_image.h"
19
source/gui/imgui/src/FileDialog.cpp
@@ -59,7 +59,7 @@ std::string pickFileOrDirectory(const std::string& title) {
59
pDialog->SetTitle(titleW);
60
DWORD opts = 0;
61
pDialog->GetOptions(&opts);
62
- pDialog->SetOptions(opts | FOS_PICKFOLDERS | FOS_ALLFILESYSTEMED);
+ pDialog->SetOptions(opts | FOS_PICKFOLDERS | FOS_FORCEFILESYSTEM);
63
64
if (pDialog->Show(nullptr) == S_OK) {
65
IShellItem* pItem = nullptr;
0 commit comments