MCPcopy Create free account
hub / github.com/Norbyte/bg3se / DebugLocal

Function DebugLocal

CoreLib/Utils.cpp:76–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76void DebugLocal(DebugMessageType type, _In_z_ _Printf_format_string_ char const* fmt, ...)
77{
78 if (gCoreLibPlatformInterface.GlobalConsole) {
79 va_list args;
80 va_start(args, fmt);
81 char buf[1024];
82 _vsnprintf_s(buf, std::size(buf), _TRUNCATE, fmt, args);
83 va_end(args);
84 gCoreLibPlatformInterface.GlobalConsole->LocalPrint(type, buf);
85 }
86}
87
88void TryDebugBreak()
89{

Callers

nothing calls this directly

Calls 1

LocalPrintMethod · 0.80

Tested by

no test coverage detected