File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
GeneralsMD/Code/GameEngine/Source/GameClient/MessageStream
Generals/Code/GameEngine/Source/GameClient/MessageStream Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -3533,6 +3533,7 @@ GameMessageDisposition CommandTranslator::translateGameMessage(const GameMessage
35333533 }
35343534
35353535 // -----------------------------------------------------------------------------
3536+ case GameMessage::MSG_RAW_MOUSE_RIGHT_DOUBLE_CLICK:
35363537 case GameMessage::MSG_RAW_MOUSE_RIGHT_BUTTON_DOWN:
35373538 {
35383539 // There are two ways in which we can ignore this as a deselect:
@@ -3556,10 +3557,6 @@ GameMessageDisposition CommandTranslator::translateGameMessage(const GameMessage
35563557
35573558 // -----------------------------------------------------------------------------
35583559 case GameMessage::MSG_MOUSE_RIGHT_DOUBLE_CLICK:
3559- {
3560- m_mouseRightDown = m_mouseRightUp; // Allow isClick to succeed on fall through
3561- FALLTHROUGH; // intentional fall through
3562- }
35633560 case GameMessage::MSG_MOUSE_RIGHT_CLICK:
35643561 {
35653562 // right click is only actioned here if we're in alternate mouse mode
Original file line number Diff line number Diff line change @@ -3874,6 +3874,7 @@ GameMessageDisposition CommandTranslator::translateGameMessage(const GameMessage
38743874 }
38753875
38763876 // -----------------------------------------------------------------------------
3877+ case GameMessage::MSG_RAW_MOUSE_RIGHT_DOUBLE_CLICK:
38773878 case GameMessage::MSG_RAW_MOUSE_RIGHT_BUTTON_DOWN:
38783879 {
38793880 // There are two ways in which we can ignore this as a deselect:
@@ -3922,8 +3923,6 @@ GameMessageDisposition CommandTranslator::translateGameMessage(const GameMessage
39223923
39233924 break ;
39243925 }
3925-
3926- m_mouseRightDown = m_mouseRightUp; // Allow isClick to succeed on fall through
39273926 FALLTHROUGH; // intentional fall through
39283927 }
39293928 case GameMessage::MSG_MOUSE_RIGHT_CLICK:
You can’t perform that action at this time.
0 commit comments