diff options
| -rw-r--r-- | gui/launcher.cpp | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/gui/launcher.cpp b/gui/launcher.cpp index af35fb46b0..712cc78883 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -588,6 +588,15 @@ void LauncherDialog::updateListing() {  			if (g.contains("description"))  				description = g.description();  		} + +#ifdef __DS__ +		// DS port uses an extra section called 'ds'.  This prevents the section from being +		// detected as a game. +		if (gameid == "ds") { +			continue; +		} +#endif +  		if (description.empty())  			description = "Unknown (target " + iter->_key + ", gameid " + gameid + ")"; | 
