Run clang-format

This commit is contained in:
wheremyfoodat 2024-02-11 13:50:50 +02:00 committed by GitHub
parent f37bd9363f
commit adcc9d93e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -91,29 +91,28 @@ public class PandaGlRenderer implements GLSurfaceView.Renderer, ConsoleRenderer
AlberDriver.Initialize();
AlberDriver.setShaderJitEnabled(GlobalConfig.get(GlobalConfig.KEY_SHADER_JIT));
// If loading the ROM failed, display an error message and early exit
if (!AlberDriver.LoadRom(romPath)) {
// Get a handler that can be used to post to the main thread
Handler mainHandler = new Handler(context.getMainLooper());
// If loading the ROM failed, display an error message and early exit
if (!AlberDriver.LoadRom(romPath)) {
// Get a handler that can be used to post to the main thread
Handler mainHandler = new Handler(context.getMainLooper());
Runnable runnable = new Runnable() {
@Override
public void run() {
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Failed to load ROM")
.setMessage("Make sure it's a valid 3DS ROM and that storage permissions are configured properly.")
.setPositiveButton("OK", null)
.setCancelable(false)
.show();
}
};
mainHandler.post(runnable);
GameMetadata game = GameUtils.getCurrentGame();
GameUtils.removeGame(game);
return;
}
Runnable runnable = new Runnable() {
@Override
public void run() {
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Failed to load ROM")
.setMessage("Make sure it's a valid 3DS ROM and that storage permissions are configured properly.")
.setPositiveButton("OK", null)
.setCancelable(false)
.show();
}
};
mainHandler.post(runnable);
GameMetadata game = GameUtils.getCurrentGame();
GameUtils.removeGame(game);
return;
}
// Load the SMDH
byte[] smdhData = AlberDriver.GetSmdh();