summaryrefslogtreecommitdiff
path: root/hw/sb16.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/sb16.c')
-rw-r--r--hw/sb16.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/hw/sb16.c b/hw/sb16.c
index 8c633c3104..f7b12e6116 100644
--- a/hw/sb16.c
+++ b/hw/sb16.c
@@ -254,7 +254,8 @@ static void dma_cmd8 (SB16State *s, int mask, int dma_len)
"sb16",
s,
SB_audio_callback,
- &as
+ &as,
+ 0 /* little endian */
);
}
@@ -348,7 +349,8 @@ static void dma_cmd (SB16State *s, uint8_t cmd, uint8_t d0, int dma_len)
"sb16",
s,
SB_audio_callback,
- &as
+ &as,
+ 0 /* little endian */
);
}
@@ -1340,7 +1342,8 @@ static int SB_load (QEMUFile *f, void *opaque, int version_id)
"sb16",
s,
SB_audio_callback,
- &as
+ &as,
+ 0 /* little endian */
);
}