From 9a5d437d65d76264cf8d7cb9e59feaced30524c6 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Sun, 24 Aug 2014 01:05:14 -0400 Subject: [PATCH] Removed systemsave functions since my save format makes it pointless. --- vndc/include/Data.hpp | 1 - vndc/src/Data.cpp | 5 ----- 2 files changed, 6 deletions(-) diff --git a/vndc/include/Data.hpp b/vndc/include/Data.hpp index 2577f09..f17a569 100644 --- a/vndc/include/Data.hpp +++ b/vndc/include/Data.hpp @@ -40,6 +40,5 @@ class DataContainer { DataContainer* GetData(); void CreateDataContainer(); void DumpSave(char* fname); -void DumpSystemSave(char* fname); #endif diff --git a/vndc/src/Data.cpp b/vndc/src/Data.cpp index ca78a49..67ec567 100644 --- a/vndc/src/Data.cpp +++ b/vndc/src/Data.cpp @@ -52,8 +52,3 @@ void DumpSave(char* fname) { fclose(save_to); } -void DumpSystemSave(char* fname) { - // A system save is simply a script - // with only gsetvar. - // It is automatically run if it exists -} -- 2.39.5