MCPcopy Create free account
hub / github.com/ZDoom/gzdoom / I_Error

Function I_Error

src/common/utility/engineerrors.cpp:89–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87//==========================================================================
88
89[[noreturn]] void I_Error(const char *error, ...)
90{
91 va_list argptr;
92 char errortext[MAX_ERRORTEXT];
93
94 va_start(argptr, error);
95 vsnprintf(errortext, MAX_ERRORTEXT, error, argptr);
96 va_end(argptr);
97 I_DebugPrint(errortext);
98
99 throw CRecoverableError(errortext);
100}
101
102//==========================================================================
103//

Callers 15

RunFunctionMethod · 0.85
SerializeMethod · 0.85
UnSnapshotLevelMethod · 0.85
CallCreateMapFunctionFunction · 0.85
G_InitNewFunction · 0.85
RunIntermissionFunction · 0.85
DoLoadLevelMethod · 0.85
P_ReadACSDeferedsFunction · 0.85
DeathMatchSpawnPlayerMethod · 0.85
G_DoPlayDemoFunction · 0.85
ExpandTicsFunction · 0.85
HSendPacketFunction · 0.85

Calls 2

I_DebugPrintFunction · 0.85
CRecoverableErrorClass · 0.70

Tested by 1

GetUserFileFunction · 0.68