-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorting save games #758
Comments
Hi, yes it was in my plan to add better sorting at some point. Starting from arma 2.00 there is this command: |
Would a temporary fix, aka changing the format of the file, be in order or do you prefer to just implement it properly later down the line? |
It will require some change of save game header layout (in SQF side) but due to save game versioning we use in the code it's not a big issue, it can be done. |
Currently the order of the saves in the load menu is quite confusing. It appears to me that the entries are alphabetically sorted however the naming does not work well with that fact.
Perhaps the saves could be sorted by the save count parameter. Alternatively the format could be changed from
{name} {progress}% {saveIndex}
to{name} {saveIndex} {progress}%
where preferably thesaveIndex
is padded with0
's to make3
into003
.I see that the code suggest that the data is read in order but that does not seem to be the case for me.
Vindicta/src/UI/InGameMenu/InGameMenuTabSave.sqf
Lines 106 to 128 in 50ed6b6
The text was updated successfully, but these errors were encountered: