mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- Moved multithreaded option from Truecolor menu to the Display menu since both the palette and truecolor drawer sets now use it.
This commit is contained in:
parent
2591eb2e54
commit
338d338e27
2 changed files with 2 additions and 2 deletions
|
@ -1811,6 +1811,7 @@ DSPLYMNU_DIMCOLOR = "Dim color";
|
|||
DSPLYMNU_MOVEBOB = "View bob amount while moving";
|
||||
DSPLYMNU_STILLBOB = "View bob amount while not moving";
|
||||
DSPLYMNU_BOBSPEED = "Weapon bob speed";
|
||||
DSPLYMNU_MULTITHREADED = "Multithreaded Drawing";
|
||||
|
||||
// HUD Options
|
||||
HUDMNU_TITLE = "HUD Options";
|
||||
|
@ -2753,7 +2754,6 @@ DSPLYMNU_TCOPT = "TrueColor Options";
|
|||
TCMNU_TITLE = "TRUECOLOR OPTIONS";
|
||||
|
||||
|
||||
TCMNU_MULTITHREADED = "Multithreaded Drawing";
|
||||
TCMNU_TRUECOLOR = "True color output";
|
||||
TCMNU_MINFILTER = "Linear filter when downscaling";
|
||||
TCMNU_MAGFILTER = "Linear filter when upscaling";
|
||||
|
|
|
@ -675,7 +675,6 @@ OptionMenu "OpenGLOptions"
|
|||
OptionMenu "TrueColorOptions"
|
||||
{
|
||||
Title "$TCMNU_TITLE"
|
||||
Option "$TCMNU_MULTITHREADED", "r_multithreaded", "OnOff"
|
||||
StaticText " "
|
||||
//Option "$TCMNU_TRUECOLOR", "swtruecolor", "OnOff"
|
||||
Option "$TCMNU_MINFILTER", "r_minfilter", "OnOff"
|
||||
|
@ -705,6 +704,7 @@ OptionMenu "VideoOptions"
|
|||
Slider "$DSPLYMNU_PICKUPFADE", "pickup_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||
Slider "$DSPLYMNU_WATERFADE", "underwater_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||
Option "$DSPLYMNU_BLENDMETHOD", "r_blendmethod", "BlendMethods"
|
||||
Option "$DSPLYMNU_MULTITHREADED", "r_multithreaded", "OnOff"
|
||||
|
||||
StaticText " "
|
||||
Option "$DSPLYMNU_WIPETYPE", "wipetype", "Wipes"
|
||||
|
|
Loading…
Reference in a new issue