mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-12 20:40:49 +00:00
Buildfix for Symbian/Meego and other platforms.
This commit is contained in:
parent
2a01a1e175
commit
c2ef287f51
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user