1
0
Fork 0
forked from fte/fteqw
Shpoike 2024-12-12 13:20:36 +00:00
parent 6e35299bf8
commit c9de6f4bff
2 changed files with 3 additions and 2 deletions

View file

@ -7654,8 +7654,6 @@ void CL_ExecInitialConfigs(char *resetcommand, qboolean fullvidrestart)
Cbuf_Execute (); //make sure any pending console commands are done with. mostly, anyway...
Cbuf_AddText("unbindall\nshowpic_removeall\n", RESTRICT_LOCAL);
Cbuf_AddText("bind volup \"inc volume 0.1\"\n", RESTRICT_LOCAL);
Cbuf_AddText("bind voldown \"inc volume -0.1\"\n", RESTRICT_LOCAL);
Cbuf_AddText("alias restart_ents \"changelevel . .\"\n",RESTRICT_LOCAL);
Cbuf_AddText("alias restart map_restart\n",RESTRICT_LOCAL);
Cbuf_AddText("alias startmap_sp \"map start\"\n", RESTRICT_LOCAL);

View file

@ -714,6 +714,9 @@ static const char *replacementq1binds =
"bind F10 menu_quit\n"
// "bind F11 +zoom\n"
"bind F12 screenshot\n"
"bind volup \"if $volume < 0.9 then inc volume 0.1 else if $volume < 1.0 then set volume 1\"\n"
"bind voldown \"inc volume -0.1; if $volume < 0 then set volume 0\"\n"
;
static const char *defaulttouchcfg =
"showpic_removeall\n"