Skip to content

Commit

Permalink
Issue #225 - fix --build-romlist mame --full when no files found
Browse files Browse the repository at this point in the history
  • Loading branch information
mickelson committed Jun 1, 2016
1 parent 75fb786 commit 1f0434b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ intended to be controlled with a joystick, gamepad or spin dial, making it
ideal for use in arcade cabinet setups.

Attract-Mode was originally developed for Linux. It is known to work on
Linux (x86, Raspberry Pi), Mac OS X (10.6.8+), and Windows (XP, 7, 32 and
64 bit) based-systems.
Linux (x86, x86-64, ARM, Raspberry Pi), Mac OS X and Windows based-systems.

Attract-Mode is licensed under the terms of the GNU General Public License,
version 3 or later.
Expand Down
2 changes: 1 addition & 1 deletion src/scraper_xml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ bool FeListXMLParser::parse_command( const std::string &prog )
// connection with -listsoftware parsing as well
//
bool ret_val=true;
if ( m_ctx.romlist.size() < 10 )
if ( (!m_ctx.full) && (m_ctx.romlist.size() < 10) )
{
for ( FeRomInfoListType::iterator itr=m_ctx.romlist.begin();
itr != m_ctx.romlist.end(); ++itr )
Expand Down

0 comments on commit 1f0434b

Please sign in to comment.