From 6e4b390b0d5472c4ec4045eaca8f682f3213ac18 Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Sat, 21 Jun 2014 14:55:30 -0700 Subject: [PATCH] HACK until audio system refactored --- src/timing.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/timing.c b/src/timing.c index 3230ca1a..081e5510 100644 --- a/src/timing.c +++ b/src/timing.c @@ -335,7 +335,10 @@ void CpuCalcCycles(const unsigned long nExecutedCycles) const long nCycles = nExecutedCycles - g_nCyclesExecuted; assert(nCycles >= 0); g_nCumulativeCycles += nCycles; - + // HACK FIXME TODO +#pragma clang diagnostic push +#pragma clang diagnostic ignored "--Wshorten-64-to-32" g_nCyclesExecuted = nExecutedCycles; +#pragma clang diagnostic pop }