Skip to content

Commit

Permalink
desktop-ui: fix game browser not listing "neo geo" games.
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeUsher committed Feb 3, 2025
1 parent ab40ecb commit 745e41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop-ui/game-browser/game-browser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ auto GameBrowserWindow::show(shared_pointer<Emulator> emulator) -> void {

auto db = tmp->database();
for(auto node : db.list) {
if(node["type"].string() != "game") continue;
if(node["type"].string().size() && node["type"].string() != "game") continue;
auto path = settings.paths.arcadeRoms;
if(!path) path = {mia::homeLocation(), "Arcade"};

Expand Down

0 comments on commit 745e41a

Please sign in to comment.