STARK: Fix having more than ten save files
This commit is contained in:
parent
5d512576f0
commit
6f100fab7e
1 changed files with 2 additions and 2 deletions
|
@ -230,8 +230,8 @@ public:
|
|||
char slot[3];
|
||||
for (Common::StringArray::const_iterator filename = filenames.begin(); filename != filenames.end(); ++filename) {
|
||||
// Extract the slot number from the filename
|
||||
slot[0] = filename->c_str()[5];
|
||||
slot[1] = filename->c_str()[6];
|
||||
slot[0] = filename->c_str()[4];
|
||||
slot[1] = filename->c_str()[5];
|
||||
slot[2] = '\0';
|
||||
|
||||
// Read the description from the save
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue