Skip to content

Commit

Permalink
Merge pull request #16033 from sum2012/patch-1
Browse files Browse the repository at this point in the history
Increase log level of ppsspp version
  • Loading branch information
hrydgard authored Sep 16, 2022
2 parents 0279337 + 976b502 commit 7c2b4b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core/System.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,11 @@ bool PSP_InitStart(const CoreParameter &coreParam, std::string *error_string) {
}

#if defined(_WIN32) && PPSSPP_ARCH(AMD64)
INFO_LOG(BOOT, "PPSSPP %s Windows 64 bit", PPSSPP_GIT_VERSION);
NOTICE_LOG(BOOT, "PPSSPP %s Windows 64 bit", PPSSPP_GIT_VERSION);
#elif defined(_WIN32) && !PPSSPP_ARCH(AMD64)
INFO_LOG(BOOT, "PPSSPP %s Windows 32 bit", PPSSPP_GIT_VERSION);
NOTICE_LOG(BOOT, "PPSSPP %s Windows 32 bit", PPSSPP_GIT_VERSION);
#else
INFO_LOG(BOOT, "PPSSPP %s", PPSSPP_GIT_VERSION);
NOTICE_LOG(BOOT, "PPSSPP %s", PPSSPP_GIT_VERSION);
#endif

Core_NotifyLifecycle(CoreLifecycle::STARTING);
Expand Down

0 comments on commit 7c2b4b6

Please sign in to comment.