From 6f22d6960e2ddd2a194dbcc5d56ac9c17440985d Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 3 Mar 2013 23:50:39 -0800 Subject: [PATCH] Add some reporting for not yet done dialogs. --- Core/Dialog/PSPMsgDialog.cpp | 2 ++ Core/Dialog/PSPSaveDialog.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Core/Dialog/PSPMsgDialog.cpp b/Core/Dialog/PSPMsgDialog.cpp index 23473a6fda..993fdb4b8a 100644 --- a/Core/Dialog/PSPMsgDialog.cpp +++ b/Core/Dialog/PSPMsgDialog.cpp @@ -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; diff --git a/Core/Dialog/PSPSaveDialog.cpp b/Core/Dialog/PSPSaveDialog.cpp index ecb032d694..2849d3a592 100644 --- a/Core/Dialog/PSPSaveDialog.cpp +++ b/Core/Dialog/PSPSaveDialog.cpp @@ -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;