mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-04-10 22:42:39 +02:00
bugfix
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@765 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
@@ -416,8 +416,8 @@ PICO_INTERNAL void PsndGetSamplesMS(void)
|
||||
|
||||
// upmix to "stereo" if needed
|
||||
if (stereo) {
|
||||
int i = length, *p = (void *)PsndOut;
|
||||
while (i--)
|
||||
int i, *p;
|
||||
for (i = length, p = (void *)PsndOut; i > 0; i--, p++)
|
||||
*p |= *p << 16;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user