1
0
Fork 0

CDROM_GetMountType func for unsupported systems

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@757
This commit is contained in:
Ulf Wohlers 2003-03-12 13:28:36 +00:00
parent c2a123dc37
commit 7ea6fa09f9

View file

@ -517,4 +517,15 @@ int CDROM_GetMountType(char* path)
return 2;
};
*/
#endif
#else
// Get Mounttype function for unsupported systems
// always return 0 - physical cdrom
int CDROM_GetMountType(char* path)
// Always return 0;
{
return 0;
};
#endif