summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-06-06 11:49:01 +0200
committerJosJuice <josjuice@gmail.com>2017-06-06 12:31:59 +0200
commitb2af07a7b70c7c22d2c7b180d5846136d1fa1f77 (patch)
treefcc7f9c8ddedb6c1570be38b4d95b9695de49fbc /Source/Core/DiscIO/Filesystem.cpp
parent1113b131f209c6b0c8095c4c8155371ae2cb9de9 (diff)
DiscIO: Remove C/I/S prefixes from class names
These prefixes were inconsistent with the rest of Dolphin. I'm also renaming VolumeWiiCrypted to VolumeWii because of 1113b13.
Diffstat (limited to 'Source/Core/DiscIO/Filesystem.cpp')
-rw-r--r--Source/Core/DiscIO/Filesystem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DiscIO/Filesystem.cpp b/Source/Core/DiscIO/Filesystem.cpp
index 9670ecda43..a955c1f402 100644
--- a/Source/Core/DiscIO/Filesystem.cpp
+++ b/Source/Core/DiscIO/Filesystem.cpp
@@ -9,21 +9,21 @@
namespace DiscIO
{
-IFileSystem::IFileSystem(const IVolume* _rVolume, const Partition& partition)
+FileSystem::FileSystem(const Volume* _rVolume, const Partition& partition)
: m_rVolume(_rVolume), m_partition(partition)
{
}
-IFileSystem::~IFileSystem()
+FileSystem::~FileSystem()
{
}
-std::unique_ptr<IFileSystem> CreateFileSystem(const IVolume* volume, const Partition& partition)
+std::unique_ptr<FileSystem> CreateFileSystem(const Volume* volume, const Partition& partition)
{
if (!volume)
return nullptr;
- std::unique_ptr<IFileSystem> filesystem = std::make_unique<CFileSystemGCWii>(volume, partition);
+ std::unique_ptr<FileSystem> filesystem = std::make_unique<FileSystemGCWii>(volume, partition);
if (!filesystem)
return nullptr;