Fix two small lint errors

This commit is contained in:
Michael M 2017-08-13 19:02:30 -07:00
parent 06da1973a8
commit 1ade08c607
2 changed files with 5 additions and 6 deletions

View File

@ -13,7 +13,7 @@
#define _assert_msg_(_t_, _a_, _fmt_, ...) \ #define _assert_msg_(_t_, _a_, _fmt_, ...) \
if (!(_a_)) \ if (!(_a_)) \
{ \ { \
if (!PanicYesNo(_fmt_ "\n\nIgnore and continue?", __VA_ARGS__)) \ if (!PanicYesNo(_fmt_ "\n\nIgnore and continue?", __VA_ARGS__)) \
Crash(); \ Crash(); \
} }

View File

@ -108,11 +108,10 @@ public:
return instance; return instance;
} }
const NANDContentLoader& const NANDContentLoader& GetNANDLoader(const std::string& content_path,
GetNANDLoader(const std::string& content_path, Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT);
Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT); const NANDContentLoader& GetNANDLoader(u64 title_id,
const NANDContentLoader& Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT);
GetNANDLoader(u64 title_id, Common::FromWhichRoot from = Common::FROM_CONFIGURED_ROOT);
void ClearCache(); void ClearCache();
private: private: