mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
QDENGINE: Remove unused variable
This commit is contained in:
parent
9d5b70d1d4
commit
7d49c96998
@ -1073,7 +1073,7 @@ void qdGameScene::update_mouse_cursor() {
|
||||
|
||||
qdInterfaceDispatcher *ip = qdInterfaceDispatcher::get_dispatcher();
|
||||
if (ip && ip->is_mouse_hover()) {
|
||||
if (qdGameDispatcher *dsp = qdGameDispatcher::get_dispatcher())
|
||||
if (qdGameDispatcher::get_dispatcher() != nullptr)
|
||||
mouse_cursor = qdGameObjectMouse::INGAME_INTERFACE_CURSOR;
|
||||
} else {
|
||||
Vect2f r = _camera.scr2plane(Vect2s(dp->mouse_cursor_pos().x, dp->mouse_cursor_pos().y));
|
||||
|
Loading…
Reference in New Issue
Block a user