From 950de0854becb8c9125f81c6fd43537fab1b0b36 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Thu, 31 Aug 2017 09:51:00 +0100 Subject: [PATCH] Fix case of windows include (when cross-compiling from Linux, it matters) --- include/bounce/common/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bounce/common/time.h b/include/bounce/common/time.h index cf9b287..5db5a63 100644 --- a/include/bounce/common/time.h +++ b/include/bounce/common/time.h @@ -37,7 +37,7 @@ #if B3_PLATFORM == B3_WINDOWS -#include +#include // A timer class that accumulates time. // Usefull for measuring elapsed times between code sections.