1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-24 04:34:16 +01:00

Codechange: Use enum class for PaletteAnimation.

This commit is contained in:
Peter Nelson
2025-01-24 20:20:22 +00:00
committed by Peter Nelson
parent 161b02efda
commit 1e14fd6a0d
13 changed files with 26 additions and 26 deletions

View File

@@ -156,5 +156,5 @@ void Blitter_8bppBase::PaletteAnimate(const Palette &)
Blitter::PaletteAnimation Blitter_8bppBase::UsePaletteAnimation()
{
return Blitter::PALETTE_ANIMATION_VIDEO_BACKEND;
return Blitter::PaletteAnimation::VideoBackend;
}