From 5a5a2c5df628197a5ab4dcce7124d8c0cb9a7d68 Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Sun, 2 Jun 2013 13:42:33 -0700 Subject: Use signed ints for things that represent signed values in YM2612 core --- ym2612.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ym2612.h') diff --git a/ym2612.h b/ym2612.h index a296659..7c74336 100644 --- a/ym2612.h +++ b/ym2612.h @@ -11,7 +11,7 @@ typedef struct { uint32_t phase_inc; uint32_t phase_counter; uint16_t envelope; - uint16_t output; + int16_t output; uint16_t total_level; uint16_t sustain_level; uint8_t rates[4]; -- cgit v1.2.3