From 746330f763948ea27bff162dcd37e03a656d9fe8 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Fri, 10 Mar 2023 10:15:29 -0800 Subject: [PATCH] implemented Platform::dir_explore for macOS --- src/internal/blah_platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/blah_platform.cpp b/src/internal/blah_platform.cpp index b77ce08..f745553 100644 --- a/src/internal/blah_platform.cpp +++ b/src/internal/blah_platform.cpp @@ -557,7 +557,7 @@ void Platform::dir_explore(const char* path) #else - BLAH_ASSERT(false, "'dir_explore' not implemented"); + system(String::fmt("open \"%s\"", path).cstr()); #endif }