mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 04:29:57 +00:00
Add break statement in default case
According to the contributing page (https://github.com/yuzu-emu/yuzu/wiki/Contributing) the default cases should have a break statement
This commit is contained in:
parent
5eb30c7827
commit
b832942b6e
1 changed files with 1 additions and 0 deletions
|
@ -351,6 +351,7 @@ int main(int argc, char** argv) {
|
|||
"additional help.\n\nError Code: {:04X}-{:04X}\nError Description: {}",
|
||||
loader_id, error_id, static_cast<Loader::ResultStatus>(error_id));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
system.TelemetrySession().AddField(Common::Telemetry::FieldType::App, "Frontend", "SDL");
|
||||
|
|
Loading…
Reference in a new issue