Skip to content
Permalink
Browse files
Merge pull request #5926 from ligfx/lintallsource
Fix two small lint errors
  • Loading branch information
leoetlino committed Aug 14, 2017
2 parents fc9f9b6 + 1ade08c commit 5bfd00f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
@@ -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(); \
}

@@ -108,11 +108,10 @@ class NANDContentManager
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:

0 comments on commit 5bfd00f

Please sign in to comment.