Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
Stella
Commits
d9c8750d
Commit
d9c8750d
authored
Jan 14, 2021
by
thrust26
Browse files
renamed pause dimming setting
parent
27118f3e
Pipeline
#11050
passed with stages
in 13 minutes and 6 seconds
Changes
3
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
docs/index.html
View file @
d9c8750d
...
...
@@ -2731,8 +2731,8 @@
shown.
</td>
</tr>
<tr>
<td><pre>
-pause
shade
<
1|0
>
</pre></td>
<td>
Enable or disable emulation
shad
ing in pause mode.
</td>
<td><pre>
-pause
dim
<
1|0
>
</pre></td>
<td>
Enable or disable emulation
dimm
ing in pause mode.
</td>
</tr>
<tr>
...
...
src/emucore/FrameBuffer.cxx
View file @
d9c8750d
...
...
@@ -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
(
"pause
shade
"
);
bool
shade
=
myOSystem
.
settings
().
getBool
(
"pause
dim
"
);
if
(
myPausedCount
--
<=
0
)
{
...
...
src/emucore/Settings.cxx
View file @
d9c8750d
...
...
@@ -47,7 +47,7 @@ Settings::Settings()
setPermanent
(
"windowedpos"
,
Common
::
Point
(
50
,
50
));
setPermanent
(
"display"
,
0
);
setPermanent
(
"uimessages"
,
"true"
);
setPermanent
(
"pause
shade
"
,
"true"
);
setPermanent
(
"pause
dim
"
,
"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
"
<<
" -pause
shade
<1|0> Enable emulation
shad
ing in pause mode
\n
"
<<
" -pause
dim
<1|0> Enable emulation
dimm
ing in pause mode
\n
"
<<
endl
#ifdef SOUND_SUPPORT
<<
" -audio.enabled <1|0> Enable audio
\n
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment