From 1ade08c607292f97963a175d379c5b34a5ae589a Mon Sep 17 00:00:00 2001 From: Michael M Date: Sun, 13 Aug 2017 19:02:30 -0700 Subject: [PATCH] Fix two small lint errors --- Source/Core/Common/Assert.h | 2 +- Source/Core/DiscIO/NANDContentLoader.h | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Source/Core/Common/Assert.h b/Source/Core/Common/Assert.h index a1cd78d8d6..aecfbdd6d1 100644 --- a/Source/Core/Common/Assert.h +++ b/Source/Core/Common/Assert.h @@ -13,7 +13,7 @@ #define _assert_msg_(_t_, _a_, _fmt_, ...) \ if (!(_a_)) \ { \ - if (!PanicYesNo(_fmt_ "\n\nIgnore and continue?", __VA_ARGS__)) \ + if (!PanicYesNo(_fmt_ "\n\nIgnore and continue?", __VA_ARGS__)) \ Crash(); \ } diff --git a/Source/Core/DiscIO/NANDContentLoader.h b/Source/Core/DiscIO/NANDContentLoader.h index 3b3d36ee70..aa7d1c168e 100644 --- a/Source/Core/DiscIO/NANDContentLoader.h +++ b/Source/Core/DiscIO/NANDContentLoader.h @@ -108,11 +108,10 @@ public: return instance; } - const NANDContentLoader& - GetNANDLoader(const std::string& content_path, - Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT); - const NANDContentLoader& - GetNANDLoader(u64 title_id, Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT); + const NANDContentLoader& GetNANDLoader(const std::string& content_path, + Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT); + const NANDContentLoader& GetNANDLoader(u64 title_id, + Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT); void ClearCache(); private: