mirror of https://github.com/PCSX2/pcsx2.git
C++-ify freezeData definition
This commit is contained in:
parent
8fe7a173cd
commit
a58fde68e6
|
@ -39,11 +39,11 @@ static const u32 g_SaveVersion = (0x9A23 << 16) | 0x0000;
|
||||||
// struct was system dependant as the size of int differs between systems, thus
|
// struct was system dependant as the size of int differs between systems, thus
|
||||||
// subsystems making use of freezeData, like GSDump and save states aren't
|
// subsystems making use of freezeData, like GSDump and save states aren't
|
||||||
// necessarily portable; we might want to investigate this in the future -- govanify
|
// necessarily portable; we might want to investigate this in the future -- govanify
|
||||||
typedef struct
|
struct freezeData
|
||||||
{
|
{
|
||||||
int size;
|
int size;
|
||||||
u8 *data;
|
u8 *data;
|
||||||
} freezeData;
|
};
|
||||||
|
|
||||||
// this function is meant to be used in the place of GSfreeze, and provides a safe layer
|
// this function is meant to be used in the place of GSfreeze, and provides a safe layer
|
||||||
// between the GS saving function and the MTGS's needs. :)
|
// between the GS saving function and the MTGS's needs. :)
|
||||||
|
|
Loading…
Reference in New Issue