mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 01:08:04 -05:00
core/debugger: support operation in yuzu-cmd
This commit is contained in:
@ -217,7 +217,15 @@ int main(int argc, char** argv) {
|
||||
[](VideoCore::LoadCallbackStage, size_t value, size_t total) {});
|
||||
}
|
||||
|
||||
system.RegisterExitCallback([&] {
|
||||
// Just exit right away.
|
||||
exit(0);
|
||||
});
|
||||
|
||||
void(system.Run());
|
||||
if (system.DebuggerEnabled()) {
|
||||
system.InitializeDebugger();
|
||||
}
|
||||
while (emu_window->IsOpen()) {
|
||||
emu_window->WaitEvent();
|
||||
}
|
||||
|
Reference in New Issue
Block a user