comparison src/os2.cpp @ 10556:bb3057c7eed7 draft

(svn r14813) -Codechange: use uint instead of 'just' unsigned.
author rubidium <rubidium@openttd.org>
date Sat, 03 Jan 2009 17:28:22 +0000
parents 5cefbb1c3fd7
children 592ae9307430
comparison
equal deleted inserted replaced
10555:315add01cf91 10556:bb3057c7eed7
37 return file[3] == '\0'; 37 return file[3] == '\0';
38 } 38 }
39 39
40 void FiosGetDrives() 40 void FiosGetDrives()
41 { 41 {
42 unsigned disk, disk2, save, total; 42 uint disk, disk2, save, total;
43 43
44 #ifndef __INNOTEK_LIBC__ 44 #ifndef __INNOTEK_LIBC__
45 _dos_getdrive(&save); // save original drive 45 _dos_getdrive(&save); // save original drive
46 #else 46 #else
47 save = _getdrive(); // save original drive 47 save = _getdrive(); // save original drive