update compiler flags, fix tracy allocation profiling, fix compiler warnings

This commit is contained in:
2026-02-23 22:25:34 +01:00
parent 59a4303d62
commit 404a76654c
19 changed files with 236 additions and 162 deletions

View File

@ -1,4 +1,8 @@
#include "renderer.hpp"
#include "config.hpp"
#include "physics.hpp"
#include "puzzle.hpp"
#include "tracy.hpp"
#include <algorithm>
#include <format>
@ -8,10 +12,6 @@
#include <tracy/Tracy.hpp>
#include <unordered_set>
#include "config.hpp"
#include "physics.hpp"
#include "puzzle.hpp"
#ifdef BATCHING
#include <cstring>
#endif
@ -314,4 +314,5 @@ auto Renderer::DrawTextures() -> void {
Vector2(GetScreenWidth() / 2.0, MENU_HEIGHT), WHITE);
DrawFPS(GetScreenWidth() / 2 + 10, MENU_HEIGHT + 10);
EndDrawing();
FrameMark;
}