Improve comment

This commit is contained in:
tomcw
2025-10-25 13:08:32 +01:00
parent 66f172e77d
commit ad58be2dcf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ public:
virtual ~Card(void) {}
virtual void InitializeIO(LPBYTE pCxRomPeripheral) = 0;
virtual void Destroy() = 0;
virtual void Destroy() = 0; // Called by CardManager::Destroy() on WM_DESTROY
virtual void Reset(const bool powerCycle) = 0;
virtual void Update(const ULONG nExecutedCycles) = 0;
virtual void SaveSnapshot(YamlSaveHelper& yamlSaveHelper) = 0;
+1 -1
View File
@@ -142,7 +142,7 @@ public:
virtual void InitializeIO(LPBYTE pCxRomPeripheral);
virtual void Update(const ULONG nExecutedCycles);
virtual void Destroy(void); // no, doesn't "destroy" the disk image. DiskIIManagerShutdown()
virtual void Destroy(void); // No, doesn't "destroy" the disk image. Called by CardManager::Destroy()
void Boot(void);
void FlushCurrentTrack(const int drive);