mirror of
https://github.com/yawut/SDL.git
synced 2026-04-24 23:37:09 -05:00
Fixed compile warning on Visual Studio
This commit is contained in:
parent
7bd32ecc46
commit
9caf6185ea
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user