- fixed the function argument of insert_cdrom() for Amiga OS and MacOSX

(added function argument "char *dev", but the cdrom change support for
  these platforms is still to do)
This commit is contained in:
Volker Ruppert 2002-05-28 15:39:05 +00:00
parent 671ad5215d
commit 6e4e751bfb
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: cdrom_amigaos.cc,v 1.3 2001-10-03 13:10:38 bdenney Exp $
// $Id: cdrom_amigaos.cc,v 1.4 2002-05-28 15:39:05 vruppert Exp $
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2000 MandrakeSoft S.A.
@ -115,7 +115,7 @@ cdrom_interface::~cdrom_interface(void)
}
bool
cdrom_interface::insert_cdrom()
cdrom_interface::insert_cdrom(char *dev)
{
uint8 cdb[6];
uint8 buf[2*BX_CD_FRAMESIZE];

View File

@ -312,7 +312,7 @@ cdrom_interface::~cdrom_interface(void)
}
bool
cdrom_interface::insert_cdrom()
cdrom_interface::insert_cdrom(char *dev)
{
mach_port_t masterPort = NULL;