|
@@ -31,9 +31,9 @@ public class AutoSaveController {
|
|
|
|
|
|
public void decreaseAutoSaveNr() {
|
|
public void decreaseAutoSaveNr() {
|
|
currentSave = MODEL.getAutoSaveNr() - 1;
|
|
currentSave = MODEL.getAutoSaveNr() - 1;
|
|
- if (currentSave < 0) {
|
|
|
|
- currentSave = max;
|
|
|
|
- }
|
|
|
|
|
|
+// if (currentSave < 0) {
|
|
|
|
+// currentSave = max;
|
|
|
|
+// }
|
|
MODEL.setAutoSaveNr(currentSave);
|
|
MODEL.setAutoSaveNr(currentSave);
|
|
}
|
|
}
|
|
|
|
|