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

Function I_Error

source/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

resetpspritevarsFunction · 0.85
prelevel_commonFunction · 0.85
LoadTheMapFunction · 0.85
setnextmapFunction · 0.85
parseMethod · 0.85
handle_se14Function · 0.85
prelevel_rFunction · 0.85
spawneffectorFunction · 0.85
addtorchFunction · 0.85
InitLevelFunction · 0.85
SectorObjectSetupBoundsFunction · 0.85
ActorTrackDecideFunction · 0.85

Calls 2

I_DebugPrintFunction · 0.85
CRecoverableErrorClass · 0.70

Tested by 1

GetUserFileFunction · 0.68