From f5e0d0bbd8611f08e54300ab170e401121f7a35c Mon Sep 17 00:00:00 2001 From: Asdow <20314541+Asdow@users.noreply.github.com> Date: Sun, 8 Oct 2023 16:47:13 +0300 Subject: [PATCH] Remove useless function --- Standard Gaming Platform/FileMan.cpp | 6 ------ Standard Gaming Platform/FileMan.h | 1 - 2 files changed, 7 deletions(-) diff --git a/Standard Gaming Platform/FileMan.cpp b/Standard Gaming Platform/FileMan.cpp index c11c1282..3b57cd69 100644 --- a/Standard Gaming Platform/FileMan.cpp +++ b/Standard Gaming Platform/FileMan.cpp @@ -1176,12 +1176,6 @@ BOOLEAN DirectoryExists( STRING512 pcDirectory ) } -BOOLEAN MakeFileManDirectory( STRING512 pcDirectory ) -{ - return FALSE; -} - - ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Removes ALL FILES in the specified directory (and all subdirectories with their files if fRecursive is TRUE) // Use EraseDirectory() to simply delete directory contents without deleting the directory itself diff --git a/Standard Gaming Platform/FileMan.h b/Standard Gaming Platform/FileMan.h index b35f06fe..0ef827c1 100644 --- a/Standard Gaming Platform/FileMan.h +++ b/Standard Gaming Platform/FileMan.h @@ -132,7 +132,6 @@ BOOLEAN GetFileManCurrentDirectory( STRING512 pcDirectory ); BOOLEAN GetExecutableDirectory( STRING512 pcDirectory ); BOOLEAN DirectoryExists( STRING512 pcDirectory ); -BOOLEAN MakeFileManDirectory( STRING512 pcDirectory ); // WARNING: THESE DELETE ALL FILES IN THE DIRECTORY ( and all subdirectories if fRecursive is TRUE!! ) BOOLEAN RemoveFileManDirectory( STRING512 pcDirectory, BOOLEAN fRecursive);