Skip to content

Commit

Permalink
Increase log level of ppsspp version
Browse files Browse the repository at this point in the history
Default log level is Error so that cannot see it,
  • Loading branch information
sum2012 committed Sep 16, 2022
1 parent 0279337 commit 976b502
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 976b502

Please sign in to comment.