From 6e4626852cc72b4869c07399ef7cc8eeaa447acc Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 29 Jun 2014 15:09:45 +0200 Subject: - re-inserted code for bsa hiding (this was necessary to enforce expected bsa order after all) - bsas from foreign bsas are now loaded as expected by hook.dll as well - state of log-window-split is now saved - auto completion in installer name boxes is now case-sensitive so that users can change casing of the mod names - bugfix: self updater did enforce the skyrim url for MO updates but not the game_id - bugfix: modinfo dialog didn't correctly read mod meta information on opening - bugfix: MO didn't report on endorsement (for MO) --- src/shared/skyriminfo.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/shared') diff --git a/src/shared/skyriminfo.h b/src/shared/skyriminfo.h index 61fb3fa2..2794555f 100644 --- a/src/shared/skyriminfo.h +++ b/src/shared/skyriminfo.h @@ -82,7 +82,8 @@ public: virtual std::wstring getNexusInfoUrl() { return SkyrimInfo::getNexusInfoUrlStatic(); } static int getNexusModIDStatic(); virtual int getNexusModID() { return SkyrimInfo::getNexusModIDStatic(); } - virtual int getNexusGameID() { return 110; } + static int getNexusGameIDStatic() { return 110; } + virtual int getNexusGameID() { return SkyrimInfo::getNexusGameIDStatic(); } virtual void createProfile(const std::wstring &directory, bool useDefaults); virtual void repairProfile(const std::wstring &directory); -- cgit v1.3.1