Ver código fonte

use LC_ALL (osx fixes)

Nicolas Cannasse 5 anos atrás
pai
commit
ec87b8b2c9
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      libs/sdl/sdl.c

+ 1 - 1
libs/sdl/sdl.c

@@ -98,7 +98,7 @@ HL_PRIM bool HL_NAME(init_once)() {
 		hl_error("SDL_Init failed: %s", hl_to_utf16(SDL_GetError()));
 		hl_error("SDL_Init failed: %s", hl_to_utf16(SDL_GetError()));
 		return false;
 		return false;
 	}
 	}
-	setlocale(LC_NUMERIC, "C");
+	setlocale(LC_ALL, "C");
 #	ifdef _WIN32
 #	ifdef _WIN32
 	// Set the internal windows timer period to 1ms (will give accurate sleep for vsync)
 	// Set the internal windows timer period to 1ms (will give accurate sleep for vsync)
 	timeBeginPeriod(1);
 	timeBeginPeriod(1);