mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
Fix data race in OpenGLBackend::DrawMouseCursor
This commit is contained in:
parent
70897c3e5e
commit
e9186308e9
@ -1060,9 +1060,9 @@ void OpenGLBackend::DrawMouseCursor()
|
||||
|
||||
/* Sprites are cached by PopulateCursorCache(). */
|
||||
if (this->cursor_cache.Contains(sprite)) {
|
||||
const Sprite *spr = GetSprite(sprite, ST_NORMAL);
|
||||
Sprite *spr = this->cursor_cache.Get(sprite);
|
||||
|
||||
this->RenderOglSprite((OpenGLSprite *)this->cursor_cache.Get(sprite)->data, _cursor.sprite_seq[i].pal,
|
||||
this->RenderOglSprite((OpenGLSprite *)spr->data, _cursor.sprite_seq[i].pal,
|
||||
_cursor.pos.x + _cursor.sprite_pos[i].x + UnScaleByZoom(spr->x_offs, ZOOM_LVL_GUI),
|
||||
_cursor.pos.y + _cursor.sprite_pos[i].y + UnScaleByZoom(spr->y_offs, ZOOM_LVL_GUI),
|
||||
ZOOM_LVL_GUI);
|
||||
|
Loading…
Reference in New Issue
Block a user