MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / error_callback

Function error_callback

pcsx2/DebugTools/SymbolImporter.cpp:65–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63};
64
65static void error_callback(const ccc::Error& error, ccc::ErrorLevel level)
66{
67 switch (level)
68 {
69 case ccc::ERROR_LEVEL_ERROR:
70 Console.Error("Error while importing symbol table: %s", error.message.c_str());
71 break;
72 case ccc::ERROR_LEVEL_WARNING:
73 Console.Warning("Warning while importing symbol table: %s", error.message.c_str());
74 break;
75 }
76}
77
78SymbolImporter::SymbolImporter(SymbolGuardian& guardian)
79 : m_guardian(guardian)

Callers 4

DoSaveStateMethod · 0.85
ZipSaveStateMethod · 0.85
SaveStateMethod · 0.85
SaveStateToSlotMethod · 0.85

Calls 3

ErrorMethod · 0.45
c_strMethod · 0.45
WarningMethod · 0.45

Tested by

no test coverage detected