Commit 378bb262 authored by anotherguest's avatar anotherguest

Increase config file version no since no controls has changed.

parent 50b3e5c1
...@@ -200,7 +200,7 @@ int loadMain (int argc, char *argv[]) { ...@@ -200,7 +200,7 @@ int loadMain (int argc, char *argv[]) {
} }
// Check that the config file was opened, and has the correct version // Check that the config file was opened, and has the correct version
if (file && (file->loadChar() == 2)) { if (file && (file->loadChar() == 3)) {
// Read video settings // Read video settings
screenW = file->loadShort(); screenW = file->loadShort();
...@@ -504,7 +504,7 @@ void freeMain () { ...@@ -504,7 +504,7 @@ void freeMain () {
if (file) { if (file) {
// Write the version number // Write the version number
file->storeChar(2); file->storeChar(3);
// Write video settings // Write video settings
file->storeShort(video.getWidth()); file->storeShort(video.getWidth());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment