summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Howard2015-06-08 20:04:14 -0400
committerSimon Howard2015-06-08 20:04:14 -0400
commite986a93409fd717fd01c93199c84ac5788bafebe (patch)
tree4f59405ef176dd90d7f3acc5a4f1470c4fa48bda
parentef4c73fc8157ee3be6a41bf1f8bdce82657d715b (diff)
downloadchocolate-doom-e986a93409fd717fd01c93199c84ac5788bafebe.tar.gz
chocolate-doom-e986a93409fd717fd01c93199c84ac5788bafebe.tar.bz2
chocolate-doom-e986a93409fd717fd01c93199c84ac5788bafebe.zip
opl: Add missing function prototype to header.
Since the addition of OPL3 support, compile of opl_sdl.c generates a warning because the declaration of Chip__GenerateBlock3() was not added to dbopl.h.
-rw-r--r--opl/dbopl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/opl/dbopl.h b/opl/dbopl.h
index 71bfc959..a8b857b3 100644
--- a/opl/dbopl.h
+++ b/opl/dbopl.h
@@ -195,6 +195,7 @@ void DBOPL_InitTables( void );
void Chip__Chip(Chip *self);
void Chip__WriteReg(Chip *self, Bit32u reg, Bit8u val );
void Chip__GenerateBlock2(Chip *self, Bitu total, Bit32s* output );
+void Chip__GenerateBlock3(Chip *self, Bitu total, Bit32s* output );
// haleyjd 09/09/10: Not standard C.
#ifdef _MSC_VER