summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Filesystem.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2015-08-09 20:53:38 +0200
committerJosJuice <josjuice@gmail.com>2017-06-14 15:25:09 +0200
commit0b7d2e7c688a1e5e45c6d53fdcc89e4663e6d299 (patch)
tree631cc61447abdb0baef0a69807aadfd4eb87a166 /Source/Core/DiscIO/Filesystem.cpp
parente3a2cd827a750505d99e83d1eafa98dc0274d9f5 (diff)
Filesystem: Modernize variable names
Diffstat (limited to 'Source/Core/DiscIO/Filesystem.cpp')
-rw-r--r--Source/Core/DiscIO/Filesystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/Filesystem.cpp b/Source/Core/DiscIO/Filesystem.cpp
index 94127e5e90..807fb6c3eb 100644
--- a/Source/Core/DiscIO/Filesystem.cpp
+++ b/Source/Core/DiscIO/Filesystem.cpp
@@ -13,8 +13,8 @@ FileInfo::~FileInfo()
{
}
-FileSystem::FileSystem(const Volume* _rVolume, const Partition& partition)
- : m_rVolume(_rVolume), m_partition(partition)
+FileSystem::FileSystem(const Volume* volume, const Partition& partition)
+ : m_volume(volume), m_partition(partition)
{
}