Buildfix for Symbian/Meego and other platforms.

This commit is contained in:
Sacha 2013-06-01 17:10:22 +10:00
parent 2a01a1e175
commit c2ef287f51
2 changed files with 11 additions and 0 deletions

View File

@ -862,6 +862,16 @@ static void DoBasePointer(PointerWrap &p, T **ptr)
}
int PSPOskDialog::Shutdown(bool force)
{
if (status != SCE_UTILITY_STATUS_FINISHED && !force)
return SCE_ERROR_UTILITY_INVALID_STATUS;
PSPDialog::Shutdown();
return 0;
}
void PSPOskDialog::DoState(PointerWrap &p)
{
PSPDialog::DoState(p);

View File

@ -161,6 +161,7 @@ public:
virtual int Init(u32 oskPtr);
virtual int Update();
virtual int Shutdown(bool force = false);
virtual void DoState(PointerWrap &p);
private:
void ConvertUCS2ToUTF8(std::string& _string, const u32 em_address);