Skip to content
Snippets Groups Projects
Unverified Commit b832942b authored by Enrico Mancuso's avatar Enrico Mancuso Committed by GitHub
Browse files

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
parent 5eb30c78
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment