migracio a SDL3

This commit is contained in:
2026-04-03 10:04:49 +02:00
parent 1e73a3159f
commit 7e570e2814
44 changed files with 826 additions and 801 deletions

View File

@@ -306,7 +306,7 @@ void MovingSprite::switchRotate()
}
// Establece el valor de la variable
void MovingSprite::setFlip(SDL_RendererFlip flip)
void MovingSprite::setFlip(SDL_FlipMode flip)
{
currentFlip = flip;
}
@@ -318,7 +318,7 @@ void MovingSprite::flip()
}
// Obtiene el valor de la variable
SDL_RendererFlip MovingSprite::getFlip()
SDL_FlipMode MovingSprite::getFlip()
{
return currentFlip;
}