mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-05 17:36:25 +00:00
Fixed compile warning on Visual Studio
This commit is contained in:
@@ -45,7 +45,7 @@ SDL_MouseNormalSpeedScaleChanged(void *userdata, const char *name, const char *o
|
||||
{
|
||||
SDL_Mouse *mouse = (SDL_Mouse *)userdata;
|
||||
|
||||
mouse->normal_speed_scale = SDL_atof(hint);
|
||||
mouse->normal_speed_scale = (float)SDL_atof(hint);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -53,7 +53,7 @@ SDL_MouseRelativeSpeedScaleChanged(void *userdata, const char *name, const char
|
||||
{
|
||||
SDL_Mouse *mouse = (SDL_Mouse *)userdata;
|
||||
|
||||
mouse->relative_speed_scale = SDL_atof(hint);
|
||||
mouse->relative_speed_scale = (float)SDL_atof(hint);
|
||||
}
|
||||
|
||||
/* Public functions */
|
||||
|
Reference in New Issue
Block a user