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
04af9d91d6
commit
444c5ed6d9
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…
Add table
Add a link
Reference in a new issue