Ver Fonte

Cleanup.

bkaradzic há 11 anos atrás
pai
commit
ccd015351d
1 ficheiros alterados com 7 adições e 7 exclusões
  1. 7 7
      include/bx/os.h

+ 7 - 7
include/bx/os.h

@@ -54,8 +54,8 @@ namespace bx
 #if BX_PLATFORM_WINDOWS || BX_PLATFORM_XBOX360
 		::Sleep(_ms);
 #elif BX_PLATFORM_WINRT
-        BX_UNUSED(_ms);
-        debugOutput("sleep is not implemented"); debugBreak();
+		BX_UNUSED(_ms);
+		debugOutput("sleep is not implemented"); debugBreak();
 #else
 		timespec req = {(time_t)_ms/1000, (long)((_ms%1000)*1000000)};
 		timespec rem = {0, 0};
@@ -70,7 +70,7 @@ namespace bx
 #elif BX_PLATFORM_XBOX360
 		::Sleep(0);
 #elif BX_PLATFORM_WINRT
-        debugOutput("yield is not implemented"); debugBreak();
+		debugOutput("yield is not implemented"); debugBreak();
 #else
 		::sched_yield();
 #endif // BX_PLATFORM_
@@ -134,7 +134,7 @@ namespace bx
 #if BX_PLATFORM_WINDOWS
 		::SetEnvironmentVariableA(_name, _value);
 #elif BX_PLATFORM_WINRT
-        BX_UNUSED(_name, _value);
+		BX_UNUSED(_name, _value);
 #else
 		::setenv(_name, _value, 1);
 #endif // BX_PLATFORM_
@@ -145,7 +145,7 @@ namespace bx
 #if BX_PLATFORM_WINDOWS
 		::SetEnvironmentVariableA(_name, NULL);
 #elif BX_PLATFORM_WINRT
-        BX_UNUSED(_name);
+		BX_UNUSED(_name);
 #else
 		::unsetenv(_name);
 #endif // BX_PLATFORM_
@@ -154,7 +154,7 @@ namespace bx
 	inline int chdir(const char* _path)
 	{
 #if BX_PLATFORM_WINRT
-        BX_UNUSED(_path);
+		BX_UNUSED(_path);
 #elif BX_COMPILER_MSVC
 		return ::_chdir(_path);
 #else
@@ -165,7 +165,7 @@ namespace bx
 	inline char* pwd(char* _buffer, uint32_t _size)
 	{
 #if BX_PLATFORM_WINRT
-        BX_UNUSED(_buffer, _size);
+		BX_UNUSED(_buffer, _size);
 #elif BX_COMPILER_MSVC
 		return ::_getcwd(_buffer, (int)_size);
 #else