mirror of https://github.com/PCSX2/pcsx2.git
Missed an important bit of last night's build script update. >_<
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@517 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
d01a6ba874
commit
09bb31aaa4
|
@ -7,7 +7,7 @@ rem DestDir - $(SolutionDir) - Directory of the destination, usually the sam
|
|||
rem DestFile - Base filename of the target/dest, without extension!
|
||||
rem DestExt - Extension of the target/dest!
|
||||
|
||||
set pcsxoutdir=%~2\bin\plugins
|
||||
set pcsxoutdir=%~2\bin
|
||||
set pcsxoutname=%pcsxoutdir%\%~3%4
|
||||
set pcsxnewname=%pcsxoutdir%\%~3-r$WCREV$$WCMODS?m:$%4
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ rem DestDir - $(SolutionDir) - Directory of the destination, usually the sam
|
|||
rem DestFile - Base filename of the target/dest, without extension!
|
||||
rem DestExt - Extension of the target/dest!
|
||||
|
||||
set pcsxoutdir=%~2\bin\plugins
|
||||
set pcsxoutdir=%~2\bin
|
||||
set pcsxoutname=%pcsxoutdir%%~3%4
|
||||
|
||||
IF NOT EXIST %pcsxoutdir% (
|
||||
|
|
|
@ -35,9 +35,9 @@ struct SPU2freezeData
|
|||
s16 OutPos;
|
||||
s16 InputPos;
|
||||
u32 Cycles;
|
||||
s32 uTicks;
|
||||
int PlayMode;
|
||||
|
||||
// Used as a base pointer to a series PcmCache blocks.
|
||||
PcmCacheEntry cacheData;
|
||||
};
|
||||
|
||||
|
@ -47,7 +47,7 @@ static const u32 SAVE_ID = 0x1227521;
|
|||
// versioning for saves.
|
||||
// Increment this when changes to the savestate system are made.
|
||||
|
||||
static const u32 SAVE_VERSION = 0x0001;
|
||||
static const u32 SAVE_VERSION = 0x0002;
|
||||
|
||||
static void wipe_the_cache()
|
||||
{
|
||||
|
|
|
@ -54,7 +54,6 @@ struct V_ADSR
|
|||
|
||||
bool Releasing; // Ready To Release, triggered by Voice.Stop();
|
||||
|
||||
|
||||
public:
|
||||
bool Calculate();
|
||||
};
|
||||
|
@ -113,7 +112,7 @@ struct V_Voice
|
|||
s32 SPc;
|
||||
|
||||
// Previous sample values - used for interpolation
|
||||
// [Air] : Inverted order of these members to match the access order in the
|
||||
// Inverted order of these members to match the access order in the
|
||||
// code (might improve cache hits).
|
||||
s32 PV4;
|
||||
s32 PV3;
|
||||
|
|
Loading…
Reference in New Issue