From ba6e699fa00baf38543851eaf2345114fdc89c06 Mon Sep 17 00:00:00 2001 From: Maxim Logaev Date: Sun, 14 Jan 2024 05:54:58 +0300 Subject: [PATCH] It is not necessary. Newlib now implements getenv --- src/misc/cross.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/misc/cross.cpp b/src/misc/cross.cpp index 0ec2b1e..72be6c5 100644 --- a/src/misc/cross.cpp +++ b/src/misc/cross.cpp @@ -90,9 +90,6 @@ void Cross::CreatePlatformConfigDir(std::string& in) { in = "~/Library/Preferences/"; ResolveHomedir(in); //Don't create it. Assume it exists -#elif defined(KOLIBRI) - in = "/tmp0/1/.dosbox"; - mkdir(in.c_str(),0700); #else in = "~/.dosbox"; ResolveHomedir(in);