diff options
author | Juan Quintela <quintela@redhat.com> | 2017-04-26 00:37:29 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-05-04 09:16:04 +0200 |
commit | 222e0356fa383175ca3c60f7b76cc9dcbb15113f (patch) | |
tree | d0da587cfde11e166c796add05f8c118ed1024bc /hw/audio/gusemu.h | |
parent | 0af81c56bf687b419ecf2f8e73cd6079a9323e4c (diff) |
audio: remove GUSchar
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-17-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 3a69222281..1c1a63cc0f 100644 --- a/hw/audio/gusemu.h +++ b/hw/audio/gusemu.h @@ -30,10 +30,8 @@ #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 char GUSchar; typedef signed short GUSsample; #else - typedef int8_t GUSchar; typedef uint16_t GUSword; typedef uint32_t GUSdword; typedef int16_t GUSsample; |