summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/disk_archive.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-04-15 01:13:33 +0200
committerbunnei <bunneidev@gmail.com>2015-04-15 01:13:33 +0200
commit46ea6944c3f637efee013ecc4ac65fd4985031a8 (patch)
tree803f60fa0ed6e8c244f3e0b4eef30b37a61f8e2f /src/core/file_sys/disk_archive.h
parentMerge pull request #683 from bunnei/thread-priority (diff)
parentCore_ARM11: Replace debug prints with our own logging functions in vfpsingle. (diff)
downloadyuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.gz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.bz2
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.lz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.xz
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.tar.zst
yuzu-46ea6944c3f637efee013ecc4ac65fd4985031a8.zip
Diffstat (limited to 'src/core/file_sys/disk_archive.h')
-rw-r--r--src/core/file_sys/disk_archive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/disk_archive.h b/src/core/file_sys/disk_archive.h
index dbbdced74..770bd715e 100644
--- a/src/core/file_sys/disk_archive.h
+++ b/src/core/file_sys/disk_archive.h
@@ -24,7 +24,7 @@ class DiskArchive : public ArchiveBackend {
public:
DiskArchive(const std::string& mount_point_) : mount_point(mount_point_) {}
- virtual std::string GetName() const { return "DiskArchive: " + mount_point; }
+ virtual std::string GetName() const override { return "DiskArchive: " + mount_point; }
std::unique_ptr<FileBackend> OpenFile(const Path& path, const Mode mode) const override;
bool DeleteFile(const Path& path) const override;