mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
EXI_DeviceMemoryCard: Use override rather than virtual
This commit is contained in:
parent
279197b278
commit
1f15119f80
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ enum class AllowMovieFolder
|
|||
class CEXIMemoryCard : public IEXIDevice
|
||||
{
|
||||
public:
|
||||
CEXIMemoryCard(const int index, bool gci_folder, const Memcard::HeaderData& header_data);
|
||||
virtual ~CEXIMemoryCard();
|
||||
CEXIMemoryCard(int index, bool gci_folder, const Memcard::HeaderData& header_data);
|
||||
~CEXIMemoryCard() override;
|
||||
void SetCS(int cs) override;
|
||||
bool IsInterruptSet() override;
|
||||
bool UseDelayedTransferCompletion() const override;
|
||||
|
|
Loading…
Add table
Reference in a new issue