MCPcopy Create free account
hub / github.com/devkitPro/3ds-hbmenu / errorScreen

Function errorScreen

source/ui/error.c:7–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5static char errorStr[256];
6
7void errorScreen(const char* title, const char* fmt, ...)
8{
9 va_list va;
10 va_start(va, fmt);
11 vsnprintf(errorStr, sizeof(errorStr), fmt, va);
12 va_end(va);
13 errorTitle = title;
14 uiEnterState(UI_STATE_ERROR);
15}
16
17void errorUpdate(void)
18{

Callers 7

launchMenuEntryFunction · 0.85
networkErrorFunction · 0.85
netsenderTaskFunction · 0.85
netloaderTaskFunction · 0.85
loadTitleDataFunction · 0.85
titleSelectInitFunction · 0.85
launchFileFunction · 0.85

Calls 1

uiEnterStateFunction · 0.85

Tested by

no test coverage detected