Post subject: Useless bug
Active player (308)
Joined: 2/28/2006
Posts: 2275
Location: Milky Way -> Earth -> Brazil
Hey, have you noticed how the "Turbo Down mode" hotkey never worked( Input->Customize Hotkeys->Page 3)? At least in the versions I have here... In 1.43 "Turbo Right mode" activates both down and right turbos. In 1.51, it's just a dummy option.
"Genuine self-esteem, however, consists not of causeless feelings, but of certain knowledge about yourself. It rests on the conviction that you — by your choices, effort and actions — have made yourself into the kind of person able to deal with reality. It is the conviction — based on the evidence of your own volitional functioning — that you are fundamentally able to succeed in life and, therefore, are deserving of that success." - Onkar Ghate
Bisqwit wrote:
Drama, too long, didn't read, lol.
Joined: 10/15/2007
Posts: 685
Go, Uselessbug! Sorry, I couldn't resist. If I remember correctly, this was noted by the author(s) somewhere as an option that's not functional. I'm in brief distraction mode at the moment, otherwise I'd cite references.
Kirby said so, so it must be true. ( >'.')>
Post subject: Re: Useless bug
gocha
Any
Emulator Coder, Former player
Joined: 6/21/2006
Posts: 401
Location: Japan, Nagoya
pirate_sephiroth wrote:
In 1.43 "Turbo Right mode" activates both down and right turbos.
			if(           ((GUI.TurboMask&TURBO_LEFT_MASK))&&(PadState[1]&2)                                    ) PadState[1]^=((joypads[J]&(2<<8>>8);
			if(           ((GUI.TurboMask&TURBO_UP_MASK))&&(PadState[1]&9)                                      ) PadState[1]^=((joypads[J]&(8<<8>>8);
			if(           ((GUI.TurboMask&TURBO_RIGHT_MASK))&&(PadState[1]&1)                                   ) PadState[1]^=((joypads[J]&(1<<8>>8);
			if(           ((GUI.TurboMask&TURBO_RIGHT_MASK))&&(PadState[1]&4)                                   ) PadState[1]^=((joypads[J]&(4<<8>>8);
pirate_sephiroth wrote:
In 1.51, it's just a dummy option.
		SendDlgItemMessage(hDlg,IDC_HOTKEY12,WM_USER+44,CustomKeys.TurboDown.key,CustomKeys.TurboDown.modifiers);
		SendDlgItemMessage(hDlg,IDC_HOTKEY12,WM_USER+44,0,0);
:o
I am usually available on Discord server or Twitter.
Active player (308)
Joined: 2/28/2006
Posts: 2275
Location: Milky Way -> Earth -> Brazil
heheheh... yeah...
"Genuine self-esteem, however, consists not of causeless feelings, but of certain knowledge about yourself. It rests on the conviction that you — by your choices, effort and actions — have made yourself into the kind of person able to deal with reality. It is the conviction — based on the evidence of your own volitional functioning — that you are fundamentally able to succeed in life and, therefore, are deserving of that success." - Onkar Ghate
Bisqwit wrote:
Drama, too long, didn't read, lol.