Skip to content

Commit 43925b9

Browse files
committed
Build fix for non Windows platforms.
1 parent ddd4c9d commit 43925b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14352,7 +14352,7 @@ static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char* path)
1435214352
{
1435314353
::ShellExecuteA(NULL, "open", path, NULL, NULL, SW_SHOWDEFAULT);
1435414354
}
14355-
#elif !defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS))
14355+
#elif !defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS)
1435614356
static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char* path)
1435714357
{
1435814358
#if __APPLE__

0 commit comments

Comments
 (0)