Skip to content

Commit

Permalink
feat(gui): add GoldSrc games to "Open In" menu
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Jan 27, 2025
1 parent 5884a62 commit 92c7179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,7 @@ void ScanSteamGamesWorker::run() {

// Add Steam games
for (auto appID : steam.getInstalledApps()) {
if (!steam.isAppUsingSourceEngine(appID) && !steam.isAppUsingSource2Engine(appID)) {
if (!steam.isAppUsingGoldSrcEngine(appID) && !steam.isAppUsingSourceEngine(appID) && !steam.isAppUsingSource2Engine(appID)) {
continue;
}
sourceGames.emplace_back(
Expand Down

0 comments on commit 92c7179

Please sign in to comment.