From 251f0c8459c39857fd8b67e8ea70538ec188274e Mon Sep 17 00:00:00 2001
From: raa-eruanna <raa-eruanna@users.noreply.github.com>
Date: Mon, 12 Mar 2018 22:39:50 -0400
Subject: [PATCH] - add one more missing include to make GCC happy

---
 src/sound/timiditypp/timidity.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/sound/timiditypp/timidity.h b/src/sound/timiditypp/timidity.h
index 0c7850568..5fe3667f6 100644
--- a/src/sound/timiditypp/timidity.h
+++ b/src/sound/timiditypp/timidity.h
@@ -30,6 +30,7 @@
 
 #include "controls.h"
 #include "mblock.h"
+#include <stdint.h>
 
 #ifdef _MSC_VER
 #pragma warning(disable:4244)	// double->float truncation occurs so often in here that it's pointless to fix it all.