renamed pause dimming setting

This commit is contained in:
thrust26 2021-01-14 09:40:02 +01:00
parent 27118f3ed0
commit d9c8750d01
3 changed files with 5 additions and 5 deletions

View File

@ -2731,8 +2731,8 @@
shown.</td>
</tr>
<tr>
<td><pre>-pauseshade &lt;1|0&gt;</pre></td>
<td>Enable or disable emulation shading in pause mode.</td>
<td><pre>-pausedim &lt;1|0&gt;</pre></td>
<td>Enable or disable emulation dimming in pause mode.</td>
</tr>
<tr>

View File

@ -343,7 +343,7 @@ void FrameBuffer::update(UpdateMode mode)
case EventHandlerState::PAUSE:
{
// Show a pause message immediately and then every 7 seconds
bool shade = myOSystem.settings().getBool("pauseshade");
bool shade = myOSystem.settings().getBool("pausedim");
if(myPausedCount-- <= 0)
{

View File

@ -47,7 +47,7 @@ Settings::Settings()
setPermanent("windowedpos", Common::Point(50, 50));
setPermanent("display", 0);
setPermanent("uimessages", "true");
setPermanent("pauseshade", "true");
setPermanent("pausedim", "true");
// TIA specific options
setPermanent("tia.inter", "false");
setPermanent("tia.zoom", "3");
@ -447,7 +447,7 @@ void Settings::usage() const
<< " -speed <number> Run emulation at the given speed\n"
<< " -turbo <1|0> Enable 'Turbo' mode for maximum emulation speed\n"
<< " -uimessages <1|0> Show onscreen UI messages for different events\n"
<< " -pauseshade <1|0> Enable emulation shading in pause mode\n"
<< " -pausedim <1|0> Enable emulation dimming in pause mode\n"
<< endl
#ifdef SOUND_SUPPORT
<< " -audio.enabled <1|0> Enable audio\n"