Fix ghost entrances caused by tool_cancel not being called

This commit is contained in:
Duncan Frost 2015-02-23 17:58:22 +00:00
parent a91abfff57
commit 1c32a429c2
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ static void window_map_close()
rct2_free(RCT2_GLOBAL(RCT2_ADDRESS_MAP_IMAGE_DATA, uint32*));
if ((RCT2_GLOBAL(RCT2_ADDRESS_INPUT_FLAGS, uint32) & INPUT_FLAG_TOOL_ACTIVE) &&
RCT2_GLOBAL(RCT2_ADDRESS_TOOL_WINDOWCLASS, uint8) == w->classification &&
RCT2_GLOBAL(RCT2_ADDRESS_TOOL_WIDGETINDEX, uint16) == w->number) {
RCT2_GLOBAL(RCT2_ADDRESS_TOOL_WINDOWNUMBER, uint16) == w->number) {
tool_cancel();
}
}