From d66cdd5f2cf2d4ae37d676895bab654015908b03 Mon Sep 17 00:00:00 2001 From: tomcw Date: Tue, 16 Apr 2019 20:30:54 +0100 Subject: [PATCH] Remove IsSpinning() --- source/Disk.cpp | 7 +------ source/Disk.h | 3 +-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/source/Disk.cpp b/source/Disk.cpp index add84070..d28eed94 100644 --- a/source/Disk.cpp +++ b/source/Disk.cpp @@ -4,7 +4,7 @@ AppleWin : An Apple //e emulator for Windows Copyright (C) 1994-1996, Michael O'Brien Copyright (C) 1999-2001, Oliver Schmidt Copyright (C) 2002-2005, Tom Charlesworth -Copyright (C) 2006-2015, Tom Charlesworth, Michael Pohoreski, Nick Westgate +Copyright (C) 2006-2019, Tom Charlesworth, Michael Pohoreski, Nick Westgate AppleWin is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -614,11 +614,6 @@ bool Disk2InterfaceCard::IsConditionForFullSpeed(void) return m_floppyMotorOn && m_enhanceDisk; } -BOOL Disk2InterfaceCard::IsSpinning(void) -{ - return m_floppyMotorOn; -} - //=========================================================================== void Disk2InterfaceCard::NotifyInvalidImage(const int drive, LPCTSTR pszImageFilename, const ImageError_e Error) diff --git a/source/Disk.h b/source/Disk.h index f36c2802..96b410ff 100644 --- a/source/Disk.h +++ b/source/Disk.h @@ -6,7 +6,7 @@ AppleWin : An Apple //e emulator for Windows Copyright (C) 1994-1996, Michael O'Brien Copyright (C) 1999-2001, Oliver Schmidt Copyright (C) 2002-2005, Tom Charlesworth -Copyright (C) 2006-2010, Tom Charlesworth, Michael Pohoreski +Copyright (C) 2006-2019, Tom Charlesworth, Michael Pohoreski, Nick Westgate AppleWin is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -127,7 +127,6 @@ public: void EjectDisk(const int drive); bool IsConditionForFullSpeed(void); - BOOL IsSpinning(void); void NotifyInvalidImage(const int drive, LPCTSTR pszImageFilename, const ImageError_e Error); void Reset(const bool bIsPowerCycle=false); bool GetProtect(const int drive);