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:
parent
c2a123dc37
commit
7ea6fa09f9
1 changed files with 12 additions and 1 deletions
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue