summaryrefslogtreecommitdiff
path: root/os2.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-03-27 10:35:01 +0000
committertron <tron@openttd.org>2005-03-27 10:35:01 +0000
commitaba225c88d011b819690dff0a2a17de32c616443 (patch)
tree5189a328ed1fa26837def0f6ff64fab6ee20180e /os2.c
parente01338fcf578cb4e92891d49bdf7570849dd58d9 (diff)
downloadopenttd-aba225c88d011b819690dff0a2a17de32c616443.tar.xz
(svn r2084) Set the name for drive items
Diffstat (limited to 'os2.c')
-rw-r--r--os2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/os2.c b/os2.c
index 449a66f80..284757e40 100644
--- a/os2.c
+++ b/os2.c
@@ -199,6 +199,7 @@ FiosItem *FiosGetSavegameList(int *num, int mode)
{
fios = FiosAlloc();
fios->type = FIOS_TYPE_DRIVE;
+ sprintf(fios->name, "%c:", 'A' + disk - 1);
sprintf(fios->title, "%c:", 'A' + disk - 1);
}
}
@@ -316,9 +317,8 @@ FiosItem *FiosGetScenarioList(int *num, int mode)
{
fios = FiosAlloc();
fios->type = FIOS_TYPE_DRIVE;
- fios->title[0] = disk + 'A'-1;
- fios->title[1] = ':';
- fios->title[2] = 0;
+ sprintf(fios->name, "%c:", 'A' + disk - 1);
+ sprintf(fios->title, "%c:", 'A' + disk - 1);
}
}