diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-26 00:37:30 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-05-04 09:16:04 +0200 |
commit | 1c742f2b8e9bb86b33f70efb28c5badcad4ef104 (patch) | |
tree | 5ceb8b305ac39ad42c0d62f8c93939275cfc82a8 /hw/audio/gusemu.h | |
parent | 222e0356fa383175ca3c60f7b76cc9dcbb15113f (diff) |
audio: GUSword is uint16_t
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-18-quintela@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/audio/gusemu.h')
-rw-r--r-- | hw/audio/gusemu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/audio/gusemu.h b/hw/audio/gusemu.h index 1c1a63cc0f..69dadef24d 100644 --- a/hw/audio/gusemu.h +++ b/hw/audio/gusemu.h @@ -28,11 +28,9 @@ /* data types (need to be adjusted if neither a VC6 nor a C99 compatible compiler is used) */ #if defined _WIN32 && defined _MSC_VER /* doesn't support other win32 compilers yet, do it yourself... */ - typedef unsigned short GUSword; typedef unsigned int GUSdword; typedef signed short GUSsample; #else - typedef uint16_t GUSword; typedef uint32_t GUSdword; typedef int16_t GUSsample; #endif |