aboutsummaryrefslogtreecommitdiffstats
path: root/include/AL/al.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-03-28 23:24:41 -0700
committerChris Robinson <[email protected]>2010-03-28 23:24:41 -0700
commit4e54f93477382e3f18a3e118030deae0b3b51f5d (patch)
tree7fecefe259937290fd96873227bcc10df6174a43 /include/AL/al.h
parent4ac1772149e63036ee47f7020ad0ead5fee3f043 (diff)
Make sure ALbyte and ALCbyte are signed
Diffstat (limited to 'include/AL/al.h')
-rw-r--r--include/AL/al.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/AL/al.h b/include/AL/al.h
index 07f9ae76..c409701f 100644
--- a/include/AL/al.h
+++ b/include/AL/al.h
@@ -52,7 +52,7 @@ typedef char ALboolean;
typedef char ALchar;
/** signed 8-bit 2's complement integer */
-typedef char ALbyte;
+typedef signed char ALbyte;
/** unsigned 8-bit integer */
typedef unsigned char ALubyte;