Add some reporting for not yet done dialogs.

This commit is contained in:
Unknown W. Brackets 2013-03-03 23:50:39 -08:00
parent ac1209204c
commit 6f22d6960e
2 changed files with 4 additions and 0 deletions

View file

@ -19,6 +19,7 @@
#include "../Util/PPGeDraw.h"
#include "../HLE/sceCtrl.h"
#include "../Core/MemMap.h"
#include "Core/Reporting.h"
#include "ChunkFile.h"
PSPMsgDialog::PSPMsgDialog()
@ -53,6 +54,7 @@ int PSPMsgDialog::Init(unsigned int paramAddr)
if(optionsNotCoded)
{
ERROR_LOG(HLE,"PSPMsgDialog options not coded : 0x%08x",optionsNotCoded);
Reporting::ReportMessage("PSPMsgDialog options not coded: 0x%08x", optionsNotCoded);
}
flag = 0;

View file

@ -20,6 +20,7 @@
#include "../HLE/sceCtrl.h"
#include "../Core/MemMap.h"
#include "../Config.h"
#include "Core/Reporting.h"
PSPSaveDialog::PSPSaveDialog()
: PSPDialog()
@ -98,6 +99,7 @@ int PSPSaveDialog::Init(int paramAddr)
default:
{
ERROR_LOG(HLE, "Load/Save function %d not coded. Title: %s Save: %s File: %s", param.GetPspParam()->mode, param.GetGameName(param.GetPspParam()).c_str(), param.GetGameName(param.GetPspParam()).c_str(), param.GetFileName(param.GetPspParam()).c_str());
Reporting::ReportMessage("Load/Save function %d not coded. Title: %s Save: %s File: %s", param.GetPspParam()->mode, param.GetGameName(param.GetPspParam()).c_str(), param.GetGameName(param.GetPspParam()).c_str(), param.GetFileName(param.GetPspParam()).c_str());
param.GetPspParam()->result = 0;
status = SCE_UTILITY_STATUS_INITIALIZE;
display = DS_NONE;