From 0eae341bb0bf743fff17a7983c1a826f23ea10ca Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Thu, 2 Jul 2015 10:42:34 -1000 Subject: [PATCH] updated RetroCommon --- hecl/extern/RetroCommon | 2 +- hecl/include/HECLDatabase.hpp | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/hecl/extern/RetroCommon b/hecl/extern/RetroCommon index 1e7f39e4c..cce7e0658 160000 --- a/hecl/extern/RetroCommon +++ b/hecl/extern/RetroCommon @@ -1 +1 @@ -Subproject commit 1e7f39e4c540b675f472fe0d60a2ed8dc8073634 +Subproject commit cce7e06580f2f9d9b9a92bcd3d8c80053240e12c diff --git a/hecl/include/HECLDatabase.hpp b/hecl/include/HECLDatabase.hpp index bc65ec36b..ba26befbb 100644 --- a/hecl/include/HECLDatabase.hpp +++ b/hecl/include/HECLDatabase.hpp @@ -71,9 +71,8 @@ public: ProjectPath subpath; bool cookedonly; }; - virtual bool canExtract(const Project& project, const ExtractPassInfo& info, - SystemString& reasonNo) - {(void)project;(void)info;reasonNo=_S("not implemented");return false;} + virtual bool canExtract(const ExtractPassInfo& info, SystemString& reasonNo) + {(void)info;reasonNo=_S("not implemented");return false;} virtual void doExtract(const Project& project, const ExtractPassInfo& info) {(void)project;(void)info;}