mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-27 18:30:56 +00:00
Missed one, try to fix Blackberry too.
This commit is contained in:
parent
f14361c3b8
commit
e569bb6862
@ -23,6 +23,10 @@
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef BLACKBERRY
|
||||
using std::size_t;
|
||||
#endif
|
||||
|
||||
void* AllocateExecutableMemory(size_t size, bool low = true);
|
||||
void* AllocateMemoryPages(size_t size);
|
||||
void FreeMemoryPages(void* ptr, size_t size);
|
||||
|
@ -248,3 +248,18 @@ bool ParamSFOData::WriteSFO(u8 **paramsfo, size_t *size)
|
||||
|
||||
}
|
||||
|
||||
void ParamSFOData::ValueData::SetData(const u8* data, int size)
|
||||
{
|
||||
if(u_value)
|
||||
{
|
||||
delete[] u_value;
|
||||
u_value = 0;
|
||||
}
|
||||
if(size > 0)
|
||||
{
|
||||
u_value = new u8[size];
|
||||
memcpy(u_value, data, size);
|
||||
}
|
||||
u_size = size;
|
||||
}
|
||||
|
||||
|
@ -62,20 +62,7 @@ private:
|
||||
u8* u_value;
|
||||
unsigned int u_size;
|
||||
|
||||
void SetData(const u8* data, int size)
|
||||
{
|
||||
if(u_value)
|
||||
{
|
||||
delete[] u_value;
|
||||
u_value = 0;
|
||||
}
|
||||
if(size > 0)
|
||||
{
|
||||
u_value = new u8[size];
|
||||
memcpy(u_value, data, size);
|
||||
}
|
||||
u_size = size;
|
||||
}
|
||||
void SetData(const u8* data, int size);
|
||||
|
||||
ValueData()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user