Codechange: Pass std::string_view from blitters instead of char *.

This commit is contained in:
Peter Nelson
2024-04-09 23:35:50 +01:00
committed by Peter Nelson
parent 332cbca36e
commit 6bc4a62c27
14 changed files with 15 additions and 15 deletions

View File

@@ -31,7 +31,7 @@ public:
void PaletteAnimate(const Palette &) override { };
Blitter::PaletteAnimation UsePaletteAnimation() override { return Blitter::PALETTE_ANIMATION_NONE; };
const char *GetName() override { return "null"; }
std::string_view GetName() override { return "null"; }
};
/** Factory for the blitter that does nothing. */