neteja tidy (29 → 0) i migració JA_* → Ja::

This commit is contained in:
2026-05-16 18:40:00 +02:00
parent 75fd037251
commit d1cf6f5529
22 changed files with 798 additions and 745 deletions
+4 -4
View File
@@ -271,12 +271,12 @@ void Screen::setBorderColor(Uint8 color) {
// Captura el contenido actual (borde + juego si el borde está activo, solo juego si no)
void Screen::captureComposite(std::vector<Uint32>& buffer, int& out_width, int& out_height) const {
const int GAME_W = static_cast<int>(game_surface_->getWidth());
const int GAME_H = static_cast<int>(game_surface_->getHeight());
const int GAME_W = game_surface_->getWidth();
const int GAME_H = game_surface_->getHeight();
if (Options::video.border.enabled) {
const int BORDER_W = static_cast<int>(border_surface_->getWidth());
const int BORDER_H = static_cast<int>(border_surface_->getHeight());
const int BORDER_W = border_surface_->getWidth();
const int BORDER_H = border_surface_->getHeight();
const int OFF_X = Options::video.border.width;
const int OFF_Y = Options::video.border.height;