First, there is the width:
[spoiler]


The slider is shorter in ZDoom.
The longer slider in GZDoom means (at my resolution) the numbers can fall off the edge of the screen when negative numbers are being displayed.
However, that may be an irrelevant issue because the number range is also different. In ZDoom the slider can go from 0.75 to 3.00. In GZDoom the values are a displayed -0.8 to 0.8. However, I think they are actually -0.85 to 0.85 which brings me on to...
ZDoom displays two decimal places whereas GZDoom only displays one. This is a problem because the slider now moves in increments of 0.05 and therefore GZDoom can't display the full number for values ending in *.*5.
I've checked the MENUDEF and ZDoom and GZDoom both have:
Code: Select all
Slider "Brightness", "Gamma", 0.75, 3.0, 0.05, 2
[edit] Heh, going back to the official versions of ZDoom and GZDoom it appears that some of these differences have been there for some time. [/edit]
[edit2] Actually, shouldn't the brightness slider be affecting "vid_brightness" rather than "Gamma"? [/edit2]