-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document function which handles hotkeys #23
base: master
Are you sure you want to change the base?
Conversation
|
||
if ( sub_485880(DIK_RMENU, 0) ) { | ||
|
||
// Alt (Right) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Switch mirrored mode
} | ||
} else if ( sub_485880(DIK_RCONTROL, 0) ) { | ||
|
||
// Control (Right) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Switch mirrored mode (exactly same behaviour as Contol (Left) ?)
if ( dword_4D79EC ) | ||
goto LABEL_146; | ||
dword_4D79EC = 1; | ||
if ( !dword_4D5E00 ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check if we are on the track selection?! That's the only place where the mirror feature works I think. Other instance also.
dword_4D5564 = 2.1f; | ||
} | ||
|
||
// Check if the cache value of truguts was changed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Poor wording
The
sub_4104F0
function seems to be the main hotkey handler. I've then moved forward from that point.Some of the less related stuff is not very documented, but that can happen later when necessary.