Add scoped helper to temporarily override screen pitch

pull/642/head
Jonathan G Rennison 5 months ago
parent ae701a3bd8
commit dcb054d152

@ -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 */

Loading…
Cancel
Save