From 686b2873a295d6516c4030158bb0dae63c22fd93 Mon Sep 17 00:00:00 2001 From: nek0 Date: Sat, 29 Jul 2017 02:47:26 +0200 Subject: [PATCH] add sysTime --- src/Affection/Types.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Affection/Types.hs b/src/Affection/Types.hs index cb352ae..be4effb 100644 --- a/src/Affection/Types.hs +++ b/src/Affection/Types.hs @@ -91,6 +91,7 @@ data AffectionData us = AffectionData , drawCPP :: Int -- ^ Number of components per pixel , elapsedTime :: Double -- ^ Elapsed time in seconds , deltaTime :: Double -- ^ Elapsed time in seconds since last tick + , sysTime :: TimeSpec -- ^ System time (NOT the time on the clock) , pausedTime :: Bool -- ^ Should the update loop be executed? }