steamcompmgr: zero-initialize some cursor stuff that used to be global.

This commit is contained in:
Pierre-Loup A. Griffais 2020-08-28 00:29:52 -07:00
parent d3f3acde74
commit 7fedd8251b
2 changed files with 7 additions and 7 deletions

View file

@ -51,18 +51,18 @@ private:
bool getTexture();
int m_x, m_y;
int m_hotspotX, m_hotspotY;
int m_width, m_height;
int m_x = 0, m_y = 0;
int m_hotspotX = 0, m_hotspotY = 0;
int m_width = 0, m_height = 0;
VulkanTexture_t m_texture;
VulkanTexture_t m_texture = 0;
bool m_dirty;
bool m_imageEmpty;
unsigned int m_lastMovedTime;
unsigned int m_lastMovedTime = 0;
bool m_hideForMovement;
PointerBarrier m_scaledFocusBarriers[4];
PointerBarrier m_scaledFocusBarriers[4] = { None };
bool m_hasPlane;

@ -1 +1 @@
Subproject commit 2176c63856df4e411df0ba3c5eee43f69e977b6e
Subproject commit 751a21d94f1b4f0345d040ddfd54b723631d5991