Add lastMileScaling, fix bugs, and expose options to MRI

This commit is contained in:
Amaryllis Kulla 2021-10-27 19:20:34 +02:00
parent fb16c8e6d0
commit bfe889f00a
6 changed files with 130 additions and 24 deletions

View file

@ -203,6 +203,9 @@ DEF_GRA_PROP_B(Fullscreen)
DEF_GRA_PROP_B(ShowCursor)
DEF_GRA_PROP_B(FixedAspectRatio)
DEF_GRA_PROP_B(SmoothScaling)
DEF_GRA_PROP_B(IntegerScaling)
DEF_GRA_PROP_B(LastMileScaling)
#define INIT_GRA_PROP_BIND(PropName, prop_name_s) \
{ \
@ -225,6 +228,9 @@ void graphicsBindingInit()
INIT_GRA_PROP_BIND( FrameCount, "frame_count" );
INIT_GRA_PROP_BIND( FixedAspectRatio, "fixed_aspect_ratio" );
INIT_GRA_PROP_BIND( SmoothScaling, "smooth_scaling" );
INIT_GRA_PROP_BIND( IntegerScaling, "integer_scaling" );
INIT_GRA_PROP_BIND( LastMileScaling, "last_mile_scaling" );
if (rgssVer >= 2)
{