summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeDirectory.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-06-03 18:14:22 +0200
committerJosJuice <josjuice@gmail.com>2017-06-03 18:14:22 +0200
commit1c926dcae2f5934436c3d329400a9c493d82008e (patch)
treedef1e166937040a54b49851d159f30e9a16a3d4e /Source/Core/DiscIO/VolumeDirectory.cpp
parent4af514bb3c65789b00e9c144eaf79aea4380b4fd (diff)
Replace {{}} with {}
IIRC we were only using {{}} because {} used to cause errors on the FreeBSD buildbot.
Diffstat (limited to 'Source/Core/DiscIO/VolumeDirectory.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeDirectory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeDirectory.cpp b/Source/Core/DiscIO/VolumeDirectory.cpp
index 397f0fc831..85cfc6d819 100644
--- a/Source/Core/DiscIO/VolumeDirectory.cpp
+++ b/Source/Core/DiscIO/VolumeDirectory.cpp
@@ -211,7 +211,7 @@ std::map<Language, std::string> CVolumeDirectory::GetLongNames() const
{
std::string name = GetInternalName();
if (name.empty())
- return {{}};
+ return {};
return {{Language::LANGUAGE_UNKNOWN, name}};
}