summaryrefslogtreecommitdiffhomepage
path: root/src/physac.h
diff options
context:
space:
mode:
authorRay <[email protected]>2019-10-17 17:18:03 +0200
committerRay <[email protected]>2019-10-17 17:18:03 +0200
commitb75511248dfa53b20ff915b7f4a2b1b4e31925b9 (patch)
tree88da79b296b60f2e573ecf4e691f93d45b4de2a4 /src/physac.h
parente40c26dea56a8f6f3c6143eb8c7be05b363b335a (diff)
downloadraylib-b75511248dfa53b20ff915b7f4a2b1b4e31925b9.tar.gz
raylib-b75511248dfa53b20ff915b7f4a2b1b4e31925b9.zip
Remove trailing spaces
Diffstat (limited to 'src/physac.h')
-rw-r--r--src/physac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/physac.h b/src/physac.h
index 42cb0198..4119feae 100644
--- a/src/physac.h
+++ b/src/physac.h
@@ -1896,7 +1896,7 @@ static Vector2 TriangleBarycenter(Vector2 v1, Vector2 v2, Vector2 v3)
static void InitTimer(void)
{
srand(time(NULL)); // Initialize random seed
-
+
#if defined(_WIN32)
QueryPerformanceFrequency((unsigned long long int *) &frequency);
#endif
@@ -1911,7 +1911,7 @@ static void InitTimer(void)
mach_timebase_info(&timebase);
frequency = (timebase.denom*1e9)/timebase.numer;
#endif
-
+
baseTime = GetTimeCount(); // Get MONOTONIC clock time offset
startTime = GetCurrentTime(); // Get current time
}
@@ -1920,7 +1920,7 @@ static void InitTimer(void)
static uint64_t GetTimeCount(void)
{
uint64_t value = 0;
-
+
#if defined(_WIN32)
QueryPerformanceCounter((unsigned long long int *) &value);
#endif