- Adjust string format so we don't write more than 40 chars
- Align comment
This commit is contained in:
parent
63e1e0d339
commit
a60c6aa701
|
@ -150,7 +150,7 @@ class Xbe : public Error
|
|||
uint32_t dwSize; // 0x0000 - size of certificate
|
||||
uint32_t dwTimeDate; // 0x0004 - timedate stamp
|
||||
uint32_t dwTitleId; // 0x0008 - title id
|
||||
wchar_t wsTitleName[40]; // 0x000C - title name (unicode)
|
||||
wchar_t wsTitleName[40]; // 0x000C - title name (unicode)
|
||||
uint32_t dwAlternateTitleId[0x10]; // 0x005C - alternate title ids
|
||||
uint32_t dwAllowedMedia; // 0x009C - allowed media types
|
||||
uint32_t dwGameRegion; // 0x00A0 - game region
|
||||
|
|
|
@ -1418,7 +1418,7 @@ __declspec(noreturn) void CxbxKrnlInit
|
|||
EmuLogInit(LOG_LEVEL::INFO, "XBE TitleID : %s", FormatTitleId(g_pCertificate->dwTitleId).c_str());
|
||||
EmuLogInit(LOG_LEVEL::INFO, "XBE TitleID (Hex) : 0x%s", titleIdHex.str().c_str());
|
||||
EmuLogInit(LOG_LEVEL::INFO, "XBE Version : 1.%02d", g_pCertificate->dwVersion);
|
||||
EmuLogInit(LOG_LEVEL::INFO, "XBE TitleName : %ls", g_pCertificate->wsTitleName);
|
||||
EmuLogInit(LOG_LEVEL::INFO, "XBE TitleName : %.40ls", g_pCertificate->wsTitleName);
|
||||
EmuLogInit(LOG_LEVEL::INFO, "XBE Region : %s", CxbxKrnl_Xbe->GameRegionToString());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue