summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorLeo Lam <leolino.lam@gmail.com>2017-06-06 12:47:33 +0200
committerGitHub <noreply@github.com>2017-06-06 12:47:33 +0200
commitc0495d1d11028ecebe93419117b3e80062eb48af (patch)
tree70071d5a82da8135b54c98d05ee5e2564138efa8 /Source/Core/DiscIO/Filesystem.cpp
parent3c0bdd747314fc40eaebd1b1e76d0063d53edbee (diff)
parentb2af07a7b70c7c22d2c7b180d5846136d1fa1f77 (diff)
Merge pull request #5559 from JosJuice/discio-rename
DiscIO: Remove C/I/S prefixes from class names
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;