summaryrefslogtreecommitdiff
path: root/src/simulation/SaveLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/simulation/SaveLoader.h')
-rw-r--r--src/simulation/SaveLoader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simulation/SaveLoader.h b/src/simulation/SaveLoader.h
index e517a2b..50b1401 100644
--- a/src/simulation/SaveLoader.h
+++ b/src/simulation/SaveLoader.h
@@ -12,11 +12,11 @@
class SaveLoader {
public:
- static int LoadSave(unsigned char * data, int dataLength, Simulation * sim);
+ static int LoadSave(unsigned char * data, int dataLength, Simulation * sim, bool replace, int x, int y);
static unsigned char * BuildSave(int & dataLength, Simulation * sim);
static int OPSLoadSave(unsigned char * data, int dataLength, Simulation * sim);
static unsigned char * OPSBuildSave(int & dataLength, Simulation * sim);
- static int PSVLoadSave(unsigned char * data, int dataLength, Simulation * sim);
+ static int PSVLoadSave(unsigned char * data, int dataLength, Simulation * sim, bool replace, int x, int y);
static unsigned char * PSVBuildSave(int & dataLength, Simulation * sim);
};