update compiler flags, fix tracy allocation profiling, fix compiler warnings
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user