Replace {{}} with {}

IIRC we were only using {{}} because {} used to cause errors
on the FreeBSD buildbot.
This commit is contained in:
JosJuice
2017-06-03 18:14:22 +02:00
parent 4af514bb3c
commit 1c926dcae2
3 changed files with 8 additions and 8 deletions

View File

@ -276,7 +276,7 @@ std::map<Language, std::string> CVolumeWiiCrypted::GetLongNames() const
{
std::unique_ptr<IFileSystem> file_system(CreateFileSystem(this, GetGamePartition()));
if (!file_system)
return {{}};
return {};
std::vector<u8> opening_bnr(NAMES_TOTAL_BYTES);
size_t size = file_system->ReadFile("opening.bnr", opening_bnr.data(), opening_bnr.size(), 0x5C);