eliminada una safety merda de debug que estava tornantme loco

This commit is contained in:
2026-04-07 13:04:58 +02:00
parent 45c7c5621a
commit 22bdb94c44

View File

@@ -370,7 +370,7 @@ void Player::moveVertical(float delta_time) {
} else {
y_ += displacement;
#ifdef _DEBUG
if (y_ > PlayArea::BOTTOM + HEIGHT) { y_ = PlayArea::TOP + 2; }
if (y_ > PlayArea::BOTTOM + 100) { y_ = PlayArea::TOP + 2; }
#endif
}
}