mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 14:58:22 -04:00
fatal: automatically collect backtrace for callers.
This commit is contained in:
parent
9714db14d2
commit
962fa0a690
9 changed files with 481 additions and 19 deletions
|
@ -163,6 +163,14 @@ void FontManager::PrintMonospaceU32(u32 x) {
|
|||
DrawString(char_buf, false, true);
|
||||
}
|
||||
|
||||
void FontManager::PrintMonospaceBlank(u32 width) {
|
||||
char char_buf[0x400] = {0};
|
||||
for (size_t i = 0; i < width && i < sizeof(char_buf); i++) {
|
||||
char_buf[i] = ' ';
|
||||
}
|
||||
|
||||
DrawString(char_buf, false, true);
|
||||
}
|
||||
|
||||
void FontManager::SetFontColor(u16 color) {
|
||||
g_font_color = color;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue