From 495846534d560f825819b7ee391e8c461ce76e4f Mon Sep 17 00:00:00 2001 From: Tannin Date: Mon, 7 Dec 2015 20:09:34 +0100 Subject: - no longer displaying "not logged in". This was too confusing for some - fixed files missing from vfs if parent directory exists in real destination dir - implemented plugin api to access current profile - steam game detection now also works for 64-bit games - removed reference to archive tab from tutorial - usvfs log level is now taken from config - some cleanup --- src/shared/gameinfo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/shared/gameinfo.cpp') diff --git a/src/shared/gameinfo.cpp b/src/shared/gameinfo.cpp index db72653e..d9dd9bb1 100644 --- a/src/shared/gameinfo.cpp +++ b/src/shared/gameinfo.cpp @@ -140,7 +140,8 @@ std::wstring GameInfo::getGameDirectory() const bool GameInfo::requiresSteam() const { - return FileExists(getGameDirectory() + L"\\steam_api.dll"); + return FileExists(getGameDirectory() + L"\\steam_api.dll") + || FileExists(getGameDirectory() + L"\\steam_api64.dll"); } std::wstring GameInfo::getLocalAppFolder() const -- cgit v1.3.1