Renamed methods in IReadSectorsDmaPatchCode

This commit is contained in:
Gericom
2026-01-02 15:32:48 +01:00
parent dcc71ca151
commit 3e4725c99c
6 changed files with 14 additions and 14 deletions

View File

@@ -18,9 +18,9 @@ public:
/// @brief Gets a pointer to the dma SD read function in the patch code.
/// @return The pointer to the dma SD read function.
virtual const ReadSectorsDmaFunc GetSdReadDmaFunction() const = 0;
virtual const ReadSectorsDmaFunc GetReadSectorsDmaFunction() const = 0;
/// @brief Gets a pointer to the dma SD read finish function in the patch code.
/// @return The pointer to the dma SD read finish function.
virtual const ReadSectorsDmaFinishFunc GetSdReadDmaFinishFunction() const = 0;
virtual const ReadSectorsDmaFinishFunc GetReadSectorsDmaFinishFunction() const = 0;
};