Skip to content

Commit

Permalink
Fix some broken comments
Browse files Browse the repository at this point in the history
Test push to test Windows build

Signed-off-by: kernaltrap <[email protected]>
  • Loading branch information
kernaltrap8 committed Feb 6, 2025
1 parent dd1a47a commit ccefc22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions _qb/dx/menu/deluxe_menu.q
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,10 @@ script 0x1e5afd34
endscript
script menu_dx_highlight_item
GetTags
set_focus_color rgba = [0 255 255 250] ; i would rather not do this but none of the other ways i tried worked
set_focus_color rgba = [0 255 255 250]
endscript

script menu_dx_remove_highlight
GetTags
set_focus_color rgba = [210 210 210 250] ; same goes
set_focus_color rgba = [210 210 210 250]
endscript
14 changes: 7 additions & 7 deletions _qb/dx/menu/modifiers_menu.q
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ script create_dx_mods_menu \{Popup = 0}
CreateScreenElement {
Type = TextElement
Id = dx_settings_scroller_up
PARENT = <Id>
PARENT = dx_settings_text
font = text_a1
Pos = (83.0, 105.0)
Text = '^'
Expand All @@ -246,17 +246,17 @@ script create_dx_mods_menu \{Popup = 0}
CreateScreenElement {
Type = TextElement
Id = dx_settings_scroller_down
PARENT = pause_menu_frame_container
PARENT = dx_settings_text
font = text_a1
Pos = (638.0, 550.0)
Pos = (83.0, 420.0)
Text = '^'
rgba = $scroller_rgba
just = [Center Top]
Scale = (1.2, -1.2)
Scale = (0.8, -1.3)
Shadow
shadow_offs = (3.0, 3.0)
shadow_rgba [0 0 0 255]
z_priority = (<pause_z> + 103)
z_priority = (<pause_z> + 104)
}
CreateScreenElement {
Type = TextBlockElement
Expand Down Expand Up @@ -400,11 +400,11 @@ script menu_dx_mods_scroll_down
if (<make_sound> = 1)
generic_menu_up_or_down_sound \{DOWN}
dx_settings_scroller_down :SetProps rgba = [255 255 255 240]
dx_settings_scroller_down :SetProps Pos = (638.0, 555.0)
dx_settings_scroller_down :SetProps Pos = (83.0, 425.0)
Wait \{200
milliseconds}
dx_settings_scroller_down :SetProps rgba = $scroller_rgba
dx_settings_scroller_down :SetProps Pos = (638.0, 550.0)
dx_settings_scroller_down :SetProps Pos = (83.0, 420.0)
endif
endscript

Expand Down

0 comments on commit ccefc22

Please sign in to comment.