Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Threading/sdl_wrapper.cpp')
-rw-r--r--Source/Threading/sdl_wrapper.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Threading/sdl_wrapper.cpp b/Source/Threading/sdl_wrapper.cpp
index 85ed868d..00acd490 100644
--- a/Source/Threading/sdl_wrapper.cpp
+++ b/Source/Threading/sdl_wrapper.cpp
@@ -2,7 +2,7 @@
// Name: sdl_wrapper.cpp
// Developer: Wolfire Games LLC
// Author: Max Danielsson
-// Description: This is a threadsafe wrapper around functions in SDL known
+// Description: This is a threadsafe wrapper around functions in SDL known
// to be used from mutiple threads.
// License: Read below
//-----------------------------------------------------------------------------
@@ -30,10 +30,9 @@
static std::mutex GetTicks_mutex;
-unsigned int SDL_TS_GetTicks()
-{
+unsigned int SDL_TS_GetTicks() {
unsigned int v = 0;
- GetTicks_mutex.lock();
+ GetTicks_mutex.lock();
v = SDL_GetTicks();
GetTicks_mutex.unlock();
return v;