From 605c98c9f8520645a6420b28f779390cb46d876f Mon Sep 17 00:00:00 2001 From: thfrwn <11335318+rfht@users.noreply.github.com> Date: Tue, 18 Jun 2024 21:32:31 -0400 Subject: [PATCH] add OpenBSD to platforms using exit(3) --- src/PowderToy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PowderToy.cpp b/src/PowderToy.cpp index fa7639698..651ac1256 100644 --- a/src/PowderToy.cpp +++ b/src/PowderToy.cpp @@ -157,7 +157,7 @@ static void BlueScreen(String detailMessage, std::optional> } // Don't use Platform::Exit, we're practically zombies at this point anyway. -#if defined(__MINGW32__) || defined(__APPLE__) || defined(__EMSCRIPTEN__) +#if defined(__MINGW32__) || defined(__APPLE__) || defined(__EMSCRIPTEN__) || defined(__OpenBSD__) // Come on... exit(-1); #else