(svn r2084) Set the name for drive items

This commit is contained in:
tron
2005-03-27 10:35:01 +00:00
parent e01338fcf5
commit aba225c88d
2 changed files with 5 additions and 3 deletions

View File

@@ -1673,6 +1673,7 @@ FiosItem *FiosGetSavegameList(int *num, int mode)
for (s = drives; *s != '\0';) {
fios = FiosAlloc();
fios->type = FIOS_TYPE_DRIVE;
sprintf(fios->name, "%c:", s[0]);
sprintf(fios->title, "%c:", s[0]);
while (*s++ != '\0') {}
}
@@ -1777,6 +1778,7 @@ FiosItem *FiosGetScenarioList(int *num, int mode)
for (s = drives; *s != '\0';) {
fios = FiosAlloc();
fios->type = FIOS_TYPE_DRIVE;
sprintf(fios->name, "%c:", s[0]);
sprintf(fios->title, "%c:", s[0]);
while (*s++ != '\0') {}
}