mirror of
https://github.com/citra-emu/citra-canary.git
synced 2024-12-23 16:55:32 +00:00
disk_archive: Remove unnecessary const in DiskDirectory's Read() declaration
This only applies in the definition of the function, not the declaration.
This commit is contained in:
parent
ed64d15060
commit
07855c48d1
|
@ -52,7 +52,7 @@ public:
|
|||
Close();
|
||||
}
|
||||
|
||||
u32 Read(const u32 count, Entry* entries) override;
|
||||
u32 Read(u32 count, Entry* entries) override;
|
||||
|
||||
bool Close() const override {
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue