Skip to content

Commit 78676ed

Browse files
committed
Avoid unnecessary GOG gamesdb queries for unreleased Epic games
1 parent dbe57bc commit 78676ed

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
26.5.15
1+
26.5.20
2+
=======
3+
+ Avoid unnecessary GOG gamesdb queries for unreleased Epic games.
4+
+ Ensure that a failed GOG gamesdb query only occurs once per game launch.
5+
6+
26.5.15
27
=======
38
+ Add various anti-cheat workarounds from Forza Horizon 5 to Forza Horizon 6.
49

include/SpecialK/DLL_VERSION.H

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#define SK_YEAR 26
44
#define SK_MONTH 5
5-
#define SK_DATE 15
5+
#define SK_DATE 20
66
#define SK_REV_N 0
77
#define SK_REV 0
88

src/storefront/epic.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1661,6 +1661,10 @@ SK::EOS::AppName (void)
16611661
}
16621662

16631663
if (config.platform.equivalent_steam_app == -1)
1664+
SK_RunOnce (SK_LoadConfig ());
1665+
1666+
if (config.platform.equivalent_steam_app == -1)
1667+
SK_RunOnce(
16641668
{
16651669
std::wstring url =
16661670
SK_FormatStringW (
@@ -1722,7 +1726,7 @@ SK::EOS::AppName (void)
17221726
} ),
17231727
true
17241728
);
1725-
}
1729+
});
17261730

17271731
app_cache_mgr->saveAppCache ();
17281732
app_cache_mgr->loadAppCacheForExe (SK_GetFullyQualifiedApp ());

0 commit comments

Comments
 (0)