summaryrefslogtreecommitdiff
path: root/hw/sb16.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-11-20 16:20:39 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-11-20 16:20:39 +0000
commit546754dc1d799ebfba1b2654a9a75541e9187674 (patch)
treeab6371d304cda5df86480998ba9f588df84a4ed7 /hw/sb16.c
parent8a40a180d39ec535b16a9456965a59722950cee2 (diff)
downloadqemu-546754dc1d799ebfba1b2654a9a75541e9187674.tar.gz
pcm endianness is now explicit (malc)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1633 c046a42c-6fe2-441c-8c8c-71466251a162
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 */
);
}