Some fixes for the new threading backends

This commit is contained in:
Bart van Strien
2011-06-09 10:56:13 +02:00
parent f9ec21619a
commit 709263b032
9 changed files with 242 additions and 237 deletions
+2 -3
View File
@@ -32,8 +32,8 @@ namespace love
{
namespace thread
{
const char* threadAPI() {
const char* threadAPI()
{
#if LOVE_THREADS == LOVE_THREADS_POSIX
return "posix";
#elif LOVE_THREADS == LOVE_THREADS_WIN32
@@ -44,6 +44,5 @@ namespace thread
return "unknown"; // ?!?!?!
#endif
}
} // namespace thread
} // namespace love