diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-04-19 08:52:35 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-04-19 08:52:35 +1000 |
commit | d5f5fb5ddf0d4a9f0b0e6ac012121926d2fcd949 (patch) | |
tree | 5f1bca917aacc2bb22d0ac00857edb15b134add2 /assets/opensb/interface | |
parent | 9533c8d0a50c2e09d4880776f5ddfda2b7482c32 (diff) |
Add hardware cursor game setting
Diffstat (limited to 'assets/opensb/interface')
-rw-r--r-- | assets/opensb/interface/graphicsmenu/body.png.patch.lua | 2 | ||||
-rw-r--r-- | assets/opensb/interface/windowconfig/graphicsmenu.config.patch.lua | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/assets/opensb/interface/graphicsmenu/body.png.patch.lua b/assets/opensb/interface/graphicsmenu/body.png.patch.lua index 76ed0c4..32afe25 100644 --- a/assets/opensb/interface/graphicsmenu/body.png.patch.lua +++ b/assets/opensb/interface/graphicsmenu/body.png.patch.lua @@ -6,4 +6,6 @@ function patch(image) image:copyInto({119, 26}, checkbox) -- Object Lighting image:copyInto({19, 15}, checkbox) + -- Hardware Cursor + image:copyInto({119, 15}, checkbox) end
\ No newline at end of file diff --git a/assets/opensb/interface/windowconfig/graphicsmenu.config.patch.lua b/assets/opensb/interface/windowconfig/graphicsmenu.config.patch.lua index 3f28954..50cf130 100644 --- a/assets/opensb/interface/windowconfig/graphicsmenu.config.patch.lua +++ b/assets/opensb/interface/windowconfig/graphicsmenu.config.patch.lua @@ -28,8 +28,11 @@ function patch(config) -- Create anti-aliasing toggle shift(clone(layout, "multiTextureLabel", "antiAliasingLabel"), 98).value = "SUPER-SAMPLED AA" shift(clone(layout, "multiTextureCheckbox", "antiAliasingCheckbox"), 99) --- Create object lighting toggle + -- Create object lighting toggle shift(clone(layout, "multiTextureLabel", "objectLightingLabel"), 0, -11).value = "NEW OBJECT LIGHTS" shift(clone(layout, "multiTextureCheckbox", "objectLightingCheckbox"), 0, -11) + -- Create hardware cursor toggle + shift(clone(layout, "multiTextureLabel", "hardwareCursorLabel"), 98, -11).value = "HARDWARE CURSOR" + shift(clone(layout, "multiTextureCheckbox", "hardwareCursorCheckbox"), 99, -11) return config end
\ No newline at end of file |