--- Frodo4/Src/IEC.cpp 2004/01/11 14:03:29 1.4 +++ Frodo4/Src/IEC.cpp 2004/01/12 15:13:20 1.6 @@ -1,7 +1,7 @@ /* * IEC.cpp - IEC bus routines, 1541 emulation (DOS level) * - * Frodo (C) 1994-1997,2002-2003 Christian Bauer + * Frodo (C) 1994-1997,2002-2004 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -68,7 +68,7 @@ IEC::IEC(C64Display *display) : the_disp if (ThePrefs.DriveType[i] == DRVTYPE_DIR) drive[i] = new FSDrive(this, ThePrefs.DrivePath[i]); else if (ThePrefs.DriveType[i] == DRVTYPE_D64) - drive[i] = new D64Drive(this, ThePrefs.DrivePath[i]); + drive[i] = new ImageDrive(this, ThePrefs.DrivePath[i]); else drive[i] = new T64Drive(this, ThePrefs.DrivePath[i]); } @@ -120,7 +120,7 @@ void IEC::NewPrefs(Prefs *prefs) if (prefs->DriveType[i] == DRVTYPE_DIR) drive[i] = new FSDrive(this, prefs->DrivePath[i]); else if (prefs->DriveType[i] == DRVTYPE_D64) - drive[i] = new D64Drive(this, prefs->DrivePath[i]); + drive[i] = new ImageDrive(this, prefs->DrivePath[i]); else drive[i] = new T64Drive(this, prefs->DrivePath[i]); }