kernel: File cleanup pt1

This commit is contained in:
IndecisiveTurtle
2024-10-23 23:02:20 +03:00
parent d0d8b5eee5
commit 77ff4290d6
27 changed files with 445 additions and 535 deletions

View File

@@ -41,7 +41,7 @@ enum MarkersPalette : int {
#define RENDERER_TRACE ZoneScopedC(RendererMarkerColor)
#define HLE_TRACE ZoneScopedC(HleMarkerColor)
#define TRACE_HINT(str) ZoneText(str.c_str(), str.size())
#define TRACE_HINT(str) ZoneText(str.data(), str.size())
#define TRACE_WARN(msg) \
[](const auto& msg) { TracyMessageC(msg.c_str(), msg.size(), tracy::Color::DarkOrange); }(msg);