mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 02:59:59 +00:00
Merge pull request #2708 from DarkLordZach/mii-db-source-crash
mii: Handle logging of unknown database source
This commit is contained in:
commit
e1981b8b8d
1 changed files with 4 additions and 0 deletions
|
@ -175,6 +175,10 @@ MiiStoreData ConvertInfoToStoreData(const MiiInfo& info) {
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
std::ostream& operator<<(std::ostream& os, Source source) {
|
std::ostream& operator<<(std::ostream& os, Source source) {
|
||||||
|
if (static_cast<std::size_t>(source) >= SOURCE_NAMES.size()) {
|
||||||
|
return os << "[UNKNOWN SOURCE]";
|
||||||
|
}
|
||||||
|
|
||||||
os << SOURCE_NAMES.at(static_cast<std::size_t>(source));
|
os << SOURCE_NAMES.at(static_cast<std::size_t>(source));
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue