From 5212efe2348e36fa6087cf408738341a662f9110 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 15 Aug 2004 22:44:35 +0000 Subject: [PATCH] fix comment --- stepmania/src/arch/ArchHooks/ArchHooks.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/arch/ArchHooks/ArchHooks.h b/stepmania/src/arch/ArchHooks/ArchHooks.h index 83ba0a358a..465c57b5e6 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks.h +++ b/stepmania/src/arch/ArchHooks/ArchHooks.h @@ -50,8 +50,8 @@ public: static int64_t GetMicrosecondsSinceStart( bool bAccurate ); private: - /* This is a helper for GetMicrosecondsSinceStart on systems with a system - * timer that may loop or move backwards. */ + /* This are helpers for GetMicrosecondsSinceStart on systems with a timer + * that may loop or move backwards. */ static uint64_t FixupTimeIfLooped( uint64_t usecs ); static uint64_t FixupTimeIfBackwards( uint64_t usecs ); };