mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-08 09:31:56 +00:00
Merge pull request #5110 from sum2012/patch-1
Make Log display Windows 32 or 64 bit
This commit is contained in:
commit
b5f61c1f53
@ -303,8 +303,13 @@ void System_Wake() {
|
||||
static bool pspIsInited = false;
|
||||
|
||||
bool PSP_Init(const CoreParameter &coreParam, std::string *error_string) {
|
||||
#if defined(_WIN32) && defined(_M_X64)
|
||||
INFO_LOG(BOOT, "PPSSPP %s Windows 64 bit", PPSSPP_GIT_VERSION);
|
||||
#elif defined(_WIN32) && !defined(_M_X64)
|
||||
INFO_LOG(BOOT, "PPSSPP %s Windows 32 bit", PPSSPP_GIT_VERSION);
|
||||
#else
|
||||
INFO_LOG(BOOT, "PPSSPP %s", PPSSPP_GIT_VERSION);
|
||||
|
||||
#endif
|
||||
coreParameter = coreParam;
|
||||
coreParameter.errorString = "";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user