1.10 release
[picodrive.git] / platform / linux / gp2x.c
index 2651a50..6e44243 100644 (file)
@@ -298,6 +298,11 @@ void gp2x_sound_write(void *buff, int len)
        write(sounddev, buff, len);
 }
 
+void gp2x_sound_sync(void)
+{
+       ioctl(sounddev, SOUND_PCM_SYNC, 0);
+}
+
 void gp2x_sound_volume(int l, int r)
 {
        l=l<0?0:l; l=l>255?255:l; r=r<0?0:r; r=r>255?255:r;
@@ -327,7 +332,7 @@ void Pause940(int yes)
 {
 }
 
-void Reset940(int yes)
+void Reset940(int yes, int bank)
 {
 }