remove debug statement that doesn't help

develop
myk002 2022-10-24 17:03:28 -07:00
parent 01c46f7a7e
commit 7b2119c4d1
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 4 deletions

@ -295,10 +295,7 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
bool handleLeft(df::coord &mpos, int32_t mx, int32_t my, int32_t depth)
{
if (Core::getInstance().getModstate() & DFH_MOD_SHIFT) {
DEBUG(log).print("shift is down; not adjusting tile depth\n");
}
else
if (!(Core::getInstance().getModstate() & DFH_MOD_SHIFT))
mpos.z += depth;
bool cursor_still_here = (last_clicked_x == mpos.x && last_clicked_y == mpos.y && last_clicked_z == mpos.z);