Toquetechant includes

This commit is contained in:
2025-02-20 13:56:07 +01:00
parent e1d6aff724
commit 4dd6c94730
66 changed files with 4462 additions and 3097 deletions

View File

@@ -1,8 +1,9 @@
#include "debug.h"
#include <algorithm> // for max
#include "asset.h" // for Asset
#include "text.h" // for Text
#include "texture.h" // for Texture
#include <algorithm> // Para max
#include "asset.h" // Para Asset
#include "text.h" // Para Text
#include "texture.h" // Para Texture
#include "utils.h"
class Screen;
// Constructor
@@ -56,7 +57,7 @@ void Debug::render()
y = 0;
for (auto l : log)
{
text->writeColored(x + 10, y, l, {255, 255, 255});
text->writeColored(x + 10, y, l, color_t(255, 255, 255));
y += text->getCharacterSize() + 1;
}
}