13
0

MSVC - accommodate some newly introduced calls to 'rintf()'

('rintf()' isn't available in MSVC)
This commit is contained in:
John Emmas 2015-02-28 13:01:02 +00:00
parent 32e23db665
commit 803a239310

View File

@ -57,6 +57,10 @@
#include "utils_videotl.h"
#include "i18n.h"
#ifdef COMPILER_MSVC
#define rintf(x) round((x) + 0.5)
#endif
using namespace Gtk;
using namespace std;
using namespace PBD;