Fix compile on linux
and add png version of the flag and platform xpms git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4315 8ced0084-cf51-0410-be5f-012b33b47a6e
After Width: | Height: | Size: 795 B |
After Width: | Height: | Size: 466 B |
After Width: | Height: | Size: 485 B |
After Width: | Height: | Size: 908 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 726 B |
After Width: | Height: | Size: 592 B |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 2.8 KiB |
|
@ -170,10 +170,10 @@ void CUCode_Zelda::RenderSynth_WaveTable(ZeldaVoicePB &PB, s32* _Buffer, int _Si
|
|||
|
||||
u64 ACC0 = PB.CurSampleFrac << 6;
|
||||
|
||||
ACC0 &= 0xffff003fffff;
|
||||
ACC0 &= 0xffff003fffffULL;
|
||||
|
||||
address = AddValueToReg(address, ((ACC0 >> 16) & 0xffff));
|
||||
ACC0 &= 0xffff0000ffff;
|
||||
ACC0 &= 0xffff0000ffffULL;
|
||||
|
||||
for(int i = 0; i < _Size; i++)
|
||||
{
|
||||
|
@ -182,7 +182,7 @@ void CUCode_Zelda::RenderSynth_WaveTable(ZeldaVoicePB &PB, s32* _Buffer, int _Si
|
|||
ACC0 += PB.RatioInt << 5;
|
||||
address = AddValueToReg(address, ((ACC0 >> 16) & 0xffff));
|
||||
|
||||
ACC0 &= 0xffff0000ffff;
|
||||
ACC0 &= 0xffff0000ffffULL;
|
||||
}
|
||||
|
||||
ACC0 = address << 16;
|
||||
|
|