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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/simulation/SaveLoader.h b/src/simulation/SaveLoader.h
index 50b1401..1fb2143 100644
--- a/src/simulation/SaveLoader.h
+++ b/src/simulation/SaveLoader.h
@@ -13,11 +13,11 @@
class SaveLoader {
public:
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 unsigned char * BuildSave(int & dataLength, Simulation * sim, int orig_x0, int orig_y0, int orig_w, int orig_h);
static int OPSLoadSave(unsigned char * data, int dataLength, Simulation * sim);
- static unsigned char * OPSBuildSave(int & dataLength, Simulation * sim);
+ static unsigned char * OPSBuildSave(int & dataLength, Simulation * sim, int orig_x0, int orig_y0, int orig_w, int orig_h);
static int PSVLoadSave(unsigned char * data, int dataLength, Simulation * sim, bool replace, int x, int y);
- static unsigned char * PSVBuildSave(int & dataLength, Simulation * sim);
+ static unsigned char * PSVBuildSave(int & dataLength, Simulation * sim, int orig_x0, int orig_y0, int orig_w, int orig_h);
};
#endif /* SAVELOADER_H_ */