mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
Minor cleanups related to #13527
Doesn't fix it though. A "Resume" button will be added later to BREAK crashes.
This commit is contained in:
@@ -1289,7 +1289,7 @@ ABI: %s
|
||||
int x = 20;
|
||||
int y = 50;
|
||||
draw2d->DrawTextShadow(ubuntu24, statbuf, x, y, 0xFFFFFFFF);
|
||||
y += 100;
|
||||
y += 140;
|
||||
|
||||
if (info.type == ExceptionType::MEMORY) {
|
||||
snprintf(statbuf, sizeof(statbuf), R"(
|
||||
@@ -1310,7 +1310,13 @@ PC: %08x)",
|
||||
info.address,
|
||||
info.pc);
|
||||
draw2d->DrawTextShadow(ubuntu24, statbuf, x, y, 0xFFFFFFFF);
|
||||
y += 120;
|
||||
y += 180;
|
||||
} else {
|
||||
snprintf(statbuf, sizeof(statbuf), R"(
|
||||
BREAK
|
||||
)");
|
||||
draw2d->DrawTextShadow(ubuntu24, statbuf, x, y, 0xFFFFFFFF);
|
||||
y += 180;
|
||||
}
|
||||
|
||||
std::string kernelState = __KernelStateSummary();
|
||||
|
||||
Reference in New Issue
Block a user