summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2015-07-28 16:56:25 +0200
committerJosJuice <josjuice@gmail.com>2017-06-13 22:37:43 +0200
commit5021b4a567fad9a258f2b0fc397912f499e4cb1d (patch)
treeaa06f212fde2bb9bfdcdd6fb8f771da8709ac324 /Source/Core/DiscIO/Filesystem.cpp
parent95bc57cff3f81f98b172d20a20b503a332fa2603 (diff)
Filesystem: Replace FileInfo struct with interface
GC/Wii filesystem internals shouldn't be exposed to other classes. This change isn't especially useful by itself, but it opens up the way for some neat stuff in the following commits.
Diffstat (limited to 'Source/Core/DiscIO/Filesystem.cpp')
-rw-r--r--Source/Core/DiscIO/Filesystem.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/Filesystem.cpp b/Source/Core/DiscIO/Filesystem.cpp
index a955c1f402..94127e5e90 100644
--- a/Source/Core/DiscIO/Filesystem.cpp
+++ b/Source/Core/DiscIO/Filesystem.cpp
@@ -9,6 +9,10 @@
namespace DiscIO
{
+FileInfo::~FileInfo()
+{
+}
+
FileSystem::FileSystem(const Volume* _rVolume, const Partition& partition)
: m_rVolume(_rVolume), m_partition(partition)
{