fix for push2 code on Windows (no random())

This commit is contained in:
Paul Davis 2016-09-28 10:51:01 -05:00
parent b6e62c6654
commit 6c4627b1b7

View file

@ -57,6 +57,10 @@
#include "pbd/i18n.h" #include "pbd/i18n.h"
#ifdef PLATFORM_WINDOWS
#define random() rand()
#endif
using namespace ARDOUR; using namespace ARDOUR;
using namespace std; using namespace std;
using namespace PBD; using namespace PBD;