mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-17 08:21:28 +00:00
Merge remote-tracking branch 'gzdoom/master'
This commit is contained in:
commit
5c1824d596
4 changed files with 1967 additions and 732 deletions
|
@ -592,6 +592,12 @@ CCMD(printstats)
|
|||
|
||||
CCMD(finishgame)
|
||||
{
|
||||
bool gamestatecheck = gamestate == GS_LEVEL || gamestate == GS_INTERMISSION || gamestate == GS_FINALE;
|
||||
if (!gamestatecheck)
|
||||
{
|
||||
Printf("Cannot use 'finishgame' while not in a game!\n");
|
||||
return;
|
||||
}
|
||||
// This CCMD simulates an end-of-game action and exists to end mods that never exit their last level.
|
||||
Net_WriteByte(DEM_FINISHGAME);
|
||||
}
|
||||
|
|
|
@ -2186,13 +2186,14 @@ MODMNU_CHIPOMATIC = "Chip-o-matic";
|
|||
RNDMNU_TITLE = "CHANGE RENDERER";
|
||||
RNDMNU_RENDERER = "Hardware Acceleration";
|
||||
RNDMNU_TRUECOLOR = "Software Truecolor Mode";
|
||||
RNDMNU_POLY = "Poly Renderer (experimental)";
|
||||
RNDMNU_POLY = "Poly Renderer (experimental)";
|
||||
RNDMNU_CANVAS = "Software Canvas";
|
||||
|
||||
// Video Options
|
||||
VIDMNU_TITLE = "VIDEO MODE";
|
||||
VIDMNU_FULLSCREEN = "Fullscreen";
|
||||
VIDMNU_HIDPI = "Retina/HiDPI support";
|
||||
VIDMNU_HIDPI = "Retina/HiDPI support";
|
||||
VIDMNU_BRDLSS = "Borderless Windowed Mode";
|
||||
VIDMNU_ASPECTRATIO = "Aspect ratio";
|
||||
VIDMNU_FORCEASPECT = "Force aspect ratio";
|
||||
VIDMNU_CROPASPECT = "Forced ratio style";
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1873,11 +1873,18 @@ OptionMenu VideoModeMenu protected
|
|||
{
|
||||
Title "$VIDMNU_TITLE"
|
||||
|
||||
Option "$VIDMNU_FULLSCREEN", "fullscreen", "YesNo"
|
||||
Option "$VIDMNU_FULLSCREEN", "fullscreen", "YesNo"
|
||||
|
||||
IfOption(Mac)
|
||||
{
|
||||
Option "$VIDMNU_HIDPI", "vid_hidpi", "YesNo"
|
||||
}
|
||||
}
|
||||
|
||||
IfOption(Windows)
|
||||
{
|
||||
Option "$VIDMNU_BRDLSS", "win_borderless", "YesNo"
|
||||
}
|
||||
|
||||
Option "$VIDMNU_ASPECTRATIO", "menu_screenratios", "Ratios"
|
||||
Option "$VIDMNU_FORCEASPECT", "vid_aspect", "ForceRatios"
|
||||
Option "$VIDMNU_CROPASPECT", "vid_cropaspect", "CropAspect"
|
||||
|
|
Loading…
Reference in a new issue