aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/mods/modsavefiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/mods/modsavefiles.h')
-rw-r--r--NorthstarDLL/mods/modsavefiles.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/NorthstarDLL/mods/modsavefiles.h b/NorthstarDLL/mods/modsavefiles.h
index a50fe62c..f9d39723 100644
--- a/NorthstarDLL/mods/modsavefiles.h
+++ b/NorthstarDLL/mods/modsavefiles.h
@@ -4,13 +4,13 @@ bool ContainsInvalidChars(std::string str);
class SaveFileManager
{
- public:
+public:
template <ScriptContext context> void SaveFileAsync(fs::path file, std::string content);
template <ScriptContext context> int LoadFileAsync(fs::path file);
template <ScriptContext context> void DeleteFileAsync(fs::path file);
// Future proofed in that if we ever get multi-threaded SSDs this code will take advantage of them.
std::mutex fileMutex;
- private:
+private:
int m_iLastRequestHandle = 0;
};