mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-13 07:31:04 +00:00
- add menu entries
This commit is contained in:
parent
82d0376520
commit
f2df781b76
2 changed files with 6 additions and 3 deletions
|
@ -341,17 +341,17 @@ CCMD(printlocalized)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
UNSAFE_CCMD(opensaves)
|
CCMD(opensaves)
|
||||||
{
|
{
|
||||||
I_OpenShellFolder(M_GetSavegamesPath().GetChars());
|
I_OpenShellFolder(M_GetSavegamesPath().GetChars());
|
||||||
}
|
}
|
||||||
|
|
||||||
UNSAFE_CCMD(openscreenshots)
|
CCMD(openscreenshots)
|
||||||
{
|
{
|
||||||
I_OpenShellFolder(M_GetScreenshotsPath().GetChars());
|
I_OpenShellFolder(M_GetScreenshotsPath().GetChars());
|
||||||
}
|
}
|
||||||
|
|
||||||
UNSAFE_CCMD(openconfig)
|
CCMD(openconfig)
|
||||||
{
|
{
|
||||||
I_OpenShellFile(M_GetConfigPath(false).GetChars());
|
I_OpenShellFile(M_GetConfigPath(false).GetChars());
|
||||||
}
|
}
|
||||||
|
|
|
@ -380,6 +380,9 @@ OptionMenu "OptionsMenu" protected
|
||||||
SafeCommand "$OPTMNU_WRITEINI", "writeini"
|
SafeCommand "$OPTMNU_WRITEINI", "writeini"
|
||||||
|
|
||||||
Command "$OPTMNU_CONSOLE", "menuconsole"
|
Command "$OPTMNU_CONSOLE", "menuconsole"
|
||||||
|
Command "$OPTMNU_OPENCONFIG", "openconfig"
|
||||||
|
Command "$OPTMNU_OPENSCREENSHOTS", "openscreenshots"
|
||||||
|
Command "$OPTMNU_OPENSAVES", "opensaves"
|
||||||
StaticText " "
|
StaticText " "
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue