mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-17 08:21:28 +00:00
Re-merge branch 'reverbedit'
This commit is contained in:
parent
00e51dc16f
commit
103aa648cd
3 changed files with 5 additions and 3 deletions
|
@ -903,9 +903,9 @@ DEFINE_ACTION_FUNCTION(DReverbEdit, GetValue)
|
|||
{
|
||||
PARAM_PROLOGUE;
|
||||
PARAM_INT(index);
|
||||
float v = 0;
|
||||
float v;
|
||||
|
||||
if (index >= 0 && index < (int)countof(ReverbFields))
|
||||
if (index >= 0 && index < countof(ReverbFields))
|
||||
{
|
||||
auto rev = &ReverbFields[index];
|
||||
if (rev->Int != nullptr)
|
||||
|
@ -931,7 +931,7 @@ DEFINE_ACTION_FUNCTION(DReverbEdit, SetValue)
|
|||
PARAM_INT(index);
|
||||
PARAM_FLOAT(v);
|
||||
|
||||
if (index >= 0 && index < (int)countof(ReverbFields))
|
||||
if (index >= 0 && index < countof(ReverbFields))
|
||||
{
|
||||
auto rev = &ReverbFields[index];
|
||||
if (rev->Int != nullptr)
|
||||
|
|
|
@ -1682,6 +1682,7 @@ OPTMNU_CHANGERENDER = "Change Rendering Output";
|
|||
OPTMNU_DEFAULTS = "Reset to defaults";
|
||||
OPTMNU_RESETTOSAVED = "Reset to last saved";
|
||||
OPTMNU_CONSOLE = "Go to console";
|
||||
OPTMNU_REVERB = "Reverb environment editor";
|
||||
|
||||
// Controls Menu
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ version "3.3"
|
|||
#include "zscript/menu/videomenu.txt"
|
||||
#include "zscript/menu/readthis.txt"
|
||||
#include "zscript/menu/conversationmenu.txt"
|
||||
#include "zscript/menu/reverbedit.txt"
|
||||
|
||||
#include "zscript/statscreen/types.txt"
|
||||
#include "zscript/statscreen/statscreen.txt"
|
||||
|
|
Loading…
Reference in a new issue