- use #if BX_WITH_MACOS instead of #ifdef macintosh to distinguish

between MacOS pre-10 and MacOS 10
This commit is contained in:
Bryce Denney 2001-09-26 00:15:30 +00:00
parent 3abf0831a5
commit 55f999327b
1 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@
#include "gui/bitmaps/reset.h"
#include "gui/bitmaps/power.h"
#include "gui/bitmaps/snapshot.h"
#ifdef macintosh
#if BX_WITH_MACOS
# include <Disks.h>
#endif
@ -128,9 +128,9 @@ bx_gui_c::floppyA_handler(void)
if (BX_GUI_THIS floppyA_status)
replace_bitmap(BX_GUI_THIS floppyA_hbar_id, BX_GUI_THIS floppyA_bmap_id);
else {
#ifdef macintosh
#if BX_WITH_MACOS
// If we are using the Mac floppy driver, eject the disk
// from the floppy drive
// from the floppy drive. This doesn't work in MacOS X.
if (!strcmp(bx_options.floppya.Opath->get (), SuperDrive))
DiskEject(1);
#endif