Make DiskGetFullPathName() public. (PR #1035)

Reasons:
. a macOS port needs it for the disk image browser feature.
. for consistency with "class HarddiskInterfaceCard".
This commit is contained in:
sh95014 2022-02-15 11:02:03 -08:00 committed by GitHub
parent 1a4e933778
commit 8cb3d4c88c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -139,6 +139,7 @@ public:
void FlushCurrentTrack(const int drive);
const std::string & GetFullDiskFilename(const int drive);
const std::string & DiskGetFullPathName(const int drive);
const std::string & GetFullName(const int drive);
const std::string & GetBaseName(const int drive);
void GetFilenameAndPathForSaveState(std::string& filename, std::string& path);
@ -192,7 +193,6 @@ private:
void AllocTrack(const int drive, const UINT minSize=NIBBLES_PER_TRACK);
void ReadTrack(const int drive, ULONG uExecutedCycles);
void WriteTrack(const int drive);
const std::string & DiskGetFullPathName(const int drive);
void ResetLogicStateSequencer(void);
UINT GetBitCellDelta(const ULONG uExecutedCycles);
void UpdateBitStreamPosition(FloppyDisk& floppy, const ULONG bitCellDelta);