From ad554ff1e82e5a44da7a9d478314c41c7232b06a Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 26 Jan 2014 02:03:29 +0100 Subject: [PATCH] sfxr: fixed Win32 build Need time.h for the time() function. --- plugins/sfxr/sfxr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/sfxr/sfxr.cpp b/plugins/sfxr/sfxr.cpp index 01beac525..c52755c81 100644 --- a/plugins/sfxr/sfxr.cpp +++ b/plugins/sfxr/sfxr.cpp @@ -23,7 +23,8 @@ * Boston, MA 02110-1301 USA. */ -#include +#include +#include #define rnd(n) (rand()%(n+1))