diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2018-06-09 19:07:20 -0700 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2018-06-14 11:37:01 -0700 |
commit | 43b66f8b79151be2614a63020eb61f28e7f1b206 (patch) | |
tree | b4a06bfb6dfc28f5f7c536358635fca0e68ff07b /addons | |
parent | cf545263b73a2f177f4acb4d31b5e436e3bb161f (diff) |
RetroPlayer: Encapsulate scaling method into generalized video filter
Scaling method is swapped for a std::string, which allows seamless
integration with shader preset paths.
Video filter logic has been encapsulated within CRenderVideoSettings.
Diffstat (limited to 'addons')
-rw-r--r-- | addons/skin.estuary/xml/Includes_DialogSelect.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/addons/skin.estuary/xml/Includes_DialogSelect.xml b/addons/skin.estuary/xml/Includes_DialogSelect.xml index 9643b3cedd..b0dc5e72c5 100644 --- a/addons/skin.estuary/xml/Includes_DialogSelect.xml +++ b/addons/skin.estuary/xml/Includes_DialogSelect.xml @@ -188,7 +188,7 @@ <control type="gamewindow"> <width>444</width> <height>250</height> - <scalingmethod>$INFO[ListItem.Property(game.scalingmethod)]</scalingmethod> + <videofilter>$INFO[ListItem.Property(game.videofilter)]</videofilter> <viewmode>$INFO[ListItem.Property(game.viewmode)]</viewmode> <rotation>$INFO[ListItem.Property(game.videorotation)]</rotation> </control> @@ -219,7 +219,7 @@ <control type="gamewindow"> <width>444</width> <height>250</height> - <scalingmethod>$INFO[ListItem.Property(game.scalingmethod)]</scalingmethod> + <videofilter>$INFO[ListItem.Property(game.videofilter)]</videofilter> <viewmode>$INFO[ListItem.Property(game.viewmode)]</viewmode> <rotation>$INFO[ListItem.Property(game.videorotation)]</rotation> </control> @@ -294,7 +294,7 @@ <control type="gamewindow"> <width>444</width> <height>250</height> - <scalingmethod>$INFO[ListItem.Property(game.scalingmethod)]</scalingmethod> + <videofilter>$INFO[ListItem.Property(game.videofilter)]</videofilter> <viewmode>$INFO[ListItem.Property(game.viewmode)]</viewmode> <rotation>$INFO[ListItem.Property(game.videorotation)]</rotation> </control> @@ -325,7 +325,7 @@ <control type="gamewindow"> <width>444</width> <height>250</height> - <scalingmethod>$INFO[ListItem.Property(game.scalingmethod)]</scalingmethod> + <videofilter>$INFO[ListItem.Property(game.videofilter)]</videofilter> <viewmode>$INFO[ListItem.Property(game.viewmode)]</viewmode> <rotation>$INFO[ListItem.Property(game.videorotation)]</rotation> </control> |