Skip to content

Commit

Permalink
small menu text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zweek committed Jun 13, 2022
1 parent e76fd6d commit f6ac391
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ if "%1"=="test" (

if "%1"=="release" (
cd ..
7z a SRMM-v%2-eng_text.zip vpk midimap.dll
7z a SRMM-v%2-eng.zip vpk midimap.dll
cd ..
move src\resource\*.dat .
move src\resource\*.txt .
copy dir\englishclient_frontend.bsp.pak000_dir.vpk export\vpk /y
cd export\vpk
RSPNVPK englishclient_frontend.bsp.pak000_dir.vpk -s -d ..\..\src
cd ..
7z a SRMM-v%2-default_text.zip vpk midimap.dll
7z a SRMM-v%2-nolang.zip vpk midimap.dll
popd
move *.dat src\resource
move *.txt src\resource
Expand Down
4 changes: 2 additions & 2 deletions src/resource/ui/menus/srmm_settings.menu
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ resource/ui/menus/srmm_settings.menu
ConVar "mat_disable_bloom"
list
{
"Enabled" 0
"Disabled" 1
"#SETTING_ON" 0
"#SETTING_OFF" 1
}

pin_to_sibling ImgVideoSubheaderBackground
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/vscripts/srmm_h.nut
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global enum SRMM_settings {
CKfix,
}

global string srmmVersion = "SRMM v2.3"
global string srmmVersion = "SRMM v2.3.1"

bool function SRMM_getSetting(int i) {
if ((GetConVarInt("voice_forcemicrecord") & (1 << i)) > 0) {
Expand Down
8 changes: 4 additions & 4 deletions src/scripts/vscripts/ui/srmm_menu_settings.nut
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ void function SRMM_InitSettingsMenu()
button = Hud_GetChild( menu, "BtnMouseKeyboardBindings" )
SetupButton(
button,
"#KEY_BINDINGS",
"#MOUSE_KEYBOARD_MENU_CONTROLS_DESC"
"Key Bindings",
"Modify mouse / keyboard bindings."
)
AddButtonEventHandler( button, UIE_CLICK, AdvanceMenuEventHandler( GetMenu( "MouseKeyboardBindingsMenu" ) ) )

Expand Down Expand Up @@ -182,8 +182,8 @@ void function AreYouSureDialog(string header, string message, void functionref()
dialogData.header = header
dialogData.message = message

AddDialogButton(dialogData, "#YES", confirmFunc)
AddDialogButton(dialogData, "#NO")
AddDialogButton(dialogData, "Yes", confirmFunc)
AddDialogButton(dialogData, "No")

OpenDialog(dialogData)
}
Expand Down

0 comments on commit f6ac391

Please sign in to comment.