mirror of https://github.com/stella-emu/stella.git
fixed doc
This commit is contained in:
parent
d292c8eb6b
commit
cbbe6fbe99
Binary file not shown.
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 44 KiB |
Binary file not shown.
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 36 KiB |
Binary file not shown.
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 74 KiB |
|
@ -3695,6 +3695,9 @@
|
|||
<li>
|
||||
The 'Show all files' checkbox allows displaying files which do not
|
||||
have a valid ROM extension.
|
||||
</li><li>
|
||||
If 'Incl. subdirectories' is checked, Stella will list matching files
|
||||
from all subdirectories too.
|
||||
</li><li>
|
||||
The 'Filter' text box can be used to narrow down the results in the
|
||||
ROM listing. When this box is empty, all files are shown. Typing
|
||||
|
@ -3706,9 +3709,6 @@
|
|||
about capital or lower-case letters. You also can use '*' and '?' as
|
||||
wildcards. E.g. for '(198?)*atari' only ROMs from the 1980s made by
|
||||
Atari will be listed.
|
||||
</li><li>
|
||||
If 'Incl. subdirectories' is checked, Stella will list matching files
|
||||
from all subdirectories too.
|
||||
</li>
|
||||
</ul>
|
||||
</br>
|
||||
|
|
|
@ -707,7 +707,8 @@ inline bool FrameBuffer::drawMessage()
|
|||
|
||||
if(myMsg.dirty)
|
||||
{
|
||||
cerr << "--- draw message ---" << endl;
|
||||
cerr << "m";
|
||||
//cerr << "--- draw message ---" << endl;
|
||||
|
||||
// Draw the bounded box and text
|
||||
const Common::Rect& dst = myMsg.surface->dstRect();
|
||||
|
|
|
@ -86,7 +86,7 @@ void ProgressDialog::setMessage(const string& message)
|
|||
myMessage->setLabel(message);
|
||||
mySlider->setWidth(lwidth);
|
||||
|
||||
_cancelWidget->setPos((_w - buttonWidth) / 2, _cancelWidget->getTop());
|
||||
_cancelWidget->setPosX((_w - buttonWidth) / 2);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
|
@ -143,7 +143,7 @@ void TimeLineWidget::drawWidget(bool hilite)
|
|||
{
|
||||
FBSurface& s = _boss->dialog().surface();
|
||||
|
||||
cerr << "TimeLineWidget::drawWidget " << typeid(s).name() << endl;
|
||||
//cerr << "TimeLineWidget::drawWidget " << typeid(s).name() << endl;
|
||||
|
||||
// Draw the label, if any
|
||||
if(_labelWidth > 0)
|
||||
|
|
Loading…
Reference in New Issue