소스 검색

autosave fix

Jessey Widhalm 8 년 전
부모
커밋
9bb8c33e0b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/ui/controller/AutoSaveController.java

+ 3 - 3
src/ui/controller/AutoSaveController.java

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