Add scoped helper to temporarily override screen pitch

This commit is contained in:
Jonathan G Rennison
2024-01-18 00:00:16 +00:00
parent ae701a3bd8
commit dcb054d152

View File

@@ -227,4 +227,19 @@ inline int GetCharacterHeight(FontSize size)
return font_height_cache[size];
}
/* Scoped temporary screen pitch override */
struct TemporaryScreenPitchOverride {
int old_pitch;
TemporaryScreenPitchOverride(int new_pitch) : old_pitch(_screen.pitch)
{
_screen.pitch = new_pitch;
}
~TemporaryScreenPitchOverride()
{
_screen.pitch = this->old_pitch;
}
};
#endif /* GFX_FUNC_H */