From 41885b1e803053c1a79d36a968e4fe68585b5325 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Fri, 30 Aug 2013 00:48:02 -0400 Subject: [PATCH] SDL_systimer docs --- src/SDL2.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 95da479..cc4fecd 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -4605,14 +4605,15 @@ namespace SDL2 #region SDL_systimer.h - /* system timers rely on different OS mechanisms depending on which - * OS the library is compiled against */ + /* System timers rely on different OS mechanisms depending on + * which operating system SDL2 is compiled against. + */ - /* delays the thread's processing based on the milliseconds parameter */ + /* Delays the thread's processing based on the milliseconds parameter */ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SDL_Delay(UInt32 ms); - /* returns the milliseconds that have passed since SDL was initialized */ + /* Returns the milliseconds that have passed since SDL was initialized */ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern UInt32 SDL_GetTicks();