mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
OPENGL: Properly use signed types for cursor hotspot.
This commit is contained in:
parent
2589228329
commit
ddc70ed9ee
@ -396,12 +396,12 @@ private:
|
||||
/**
|
||||
* The X offset for the cursor hotspot in unscaled coordinates.
|
||||
*/
|
||||
uint _cursorHotspotX;
|
||||
int _cursorHotspotX;
|
||||
|
||||
/**
|
||||
* The Y offset for the cursor hotspot in unscaled coordinates.
|
||||
*/
|
||||
uint _cursorHotspotY;
|
||||
int _cursorHotspotY;
|
||||
|
||||
/**
|
||||
* Recalculate the cursor scaling. Scaling is always done according to
|
||||
@ -412,12 +412,12 @@ private:
|
||||
/**
|
||||
* The X offset for the cursor hotspot in scaled coordinates.
|
||||
*/
|
||||
uint _cursorHotspotXScaled;
|
||||
int _cursorHotspotXScaled;
|
||||
|
||||
/**
|
||||
* The Y offset for the cursor hotspot in scaled coordinates.
|
||||
*/
|
||||
uint _cursorHotspotYScaled;
|
||||
int _cursorHotspotYScaled;
|
||||
|
||||
/**
|
||||
* The width of the cursor scaled coordinates.
|
||||
|
Loading…
x
Reference in New Issue
Block a user