mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-01 01:11:46 +00:00
Buildfix Jacky's web browser edited commit :P
This commit is contained in:
parent
f909605e6e
commit
257fd29e52
@ -142,6 +142,11 @@ template<void func(u32, int, u32, int, int)> void WrapV_UIUII() {
|
||||
func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4));
|
||||
}
|
||||
|
||||
template<u32 func(u32, int, int)> void WrapU_UII() {
|
||||
u32 retval = func(PARAM(0), PARAM(1), PARAM(2));
|
||||
RETURN(retval);
|
||||
}
|
||||
|
||||
template<void func(u32, int, int, int)> void WrapV_UIII() {
|
||||
func(PARAM(0), PARAM(1), PARAM(2), PARAM(3));
|
||||
}
|
||||
|
@ -124,6 +124,7 @@ struct Voice
|
||||
int samplePos;
|
||||
int size;
|
||||
int loop;
|
||||
int freq; //units?
|
||||
int volumeLeft;
|
||||
int volumeRight;
|
||||
int volumeLeftSend; // volume to "Send" (audio-lingo) to the effects processing engine, like reverb
|
||||
@ -135,6 +136,7 @@ struct Voice
|
||||
int attackType;
|
||||
int decayType;
|
||||
int sustainType;
|
||||
int sustainLevel;
|
||||
int releaseType;
|
||||
int pitch;
|
||||
bool endFlag;
|
||||
|
Loading…
Reference in New Issue
Block a user