Default mouseScale fixed

- Didn't set X and Y values correctly.
This commit is contained in:
ChrisDill 2019-01-02 10:46:19 +00:00
parent 8933298864
commit a707574f33

View File

@ -333,7 +333,7 @@ static int defaultKeyboardMode; // Used to store default keyboar
// Mouse states // Mouse states
static Vector2 mousePosition; // Mouse position on screen static Vector2 mousePosition; // Mouse position on screen
static Vector2 mouseScale = { 1.0f }; // Mouse default scale static Vector2 mouseScale = { 1.0f, 1.0f }; // Mouse default scale
static bool cursorHidden = false; // Track if cursor is hidden static bool cursorHidden = false; // Track if cursor is hidden
static bool cursorOnScreen = false; // Tracks if cursor is inside client area static bool cursorOnScreen = false; // Tracks if cursor is inside client area
static Vector2 touchPosition[MAX_TOUCH_POINTS]; // Touch position on screen static Vector2 touchPosition[MAX_TOUCH_POINTS]; // Touch position on screen
@ -2114,7 +2114,7 @@ void SetMousePosition(Vector2 position)
void SetMouseScale(float scale) void SetMouseScale(float scale)
{ {
#if !defined(PLATFORM_ANDROID) #if !defined(PLATFORM_ANDROID)
mouseScale = (Vector2){ scale }; mouseScale = (Vector2){ scale, scale };
#endif #endif
} }