diff options
| author | jhurst <jhurst@cinecert.com> | 2012-02-21 02:09:32 +0000 |
|---|---|---|
| committer | jhurst <> | 2012-02-21 02:09:32 +0000 |
| commit | 1a5727137f5b5ff8aecd3ec5a162c198c8c0a5e7 (patch) | |
| tree | c61a1e8ba29253e51a8ebe310db2e0fad217cd78 /src/KM_tai.h | |
| parent | 80463afc197c90372d3f4c7890c6520f1040aedc (diff) | |
mega datetime patch
Diffstat (limited to 'src/KM_tai.h')
| -rw-r--r-- | src/KM_tai.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KM_tai.h b/src/KM_tai.h index ee3b666..da90df7 100644 --- a/src/KM_tai.h +++ b/src/KM_tai.h @@ -64,7 +64,7 @@ namespace Kumu struct tai { ui64_t x; - inline void add_seconds(i32_t s) { x += s * 1; } + inline void add_seconds(i32_t s) { x += s; } inline void add_minutes(i32_t m) { x += m * 60; } inline void add_hours(i32_t h) { x += h * 3600; } inline void add_days(i32_t d) { x += d * 86400; } |
