Simplify the signature of savefile().
[open-adventure.git] / main.c
diff --git a/main.c b/main.c
index 80689e3f5c14f314fdd04c0b3dd4d51e1c1bdd8b..a162463edc251ea9f6cc1af224c706b21753d9e6 100644 (file)
--- a/main.c
+++ b/main.c
@@ -24,7 +24,7 @@ void autosave(void)
 {
     if (autosave_fp != NULL) {
         rewind(autosave_fp);
-        savefile(autosave_fp, /* version (auto): */0);
+        savefile(autosave_fp);
         fflush(autosave_fp);
     }
 }