The NEW Build Your Own Arcade Controls
Main => Software Forum => Topic started by: gonzo90017 on March 11, 2006, 12:29:26 am
-
How can I do this?
-
Press Alt+F4 ;D
-
Doesn't work. I know I have to edit default.ini in the ctrlr folder but I have no idea how to put it?
# MAMEWAH 1.6+ Standard Control Configuration
# PLEASE USE INPUT CODES FROM \MAMEWAH\DOCS\CTRLR.TXT
# NOTE DIFFERENCES TO MAME's (EX!) CTRLR INI FILES:
# 'NOT' (!) LOGIC NOT SUPPORTED
# 'AND' LOGIC EXPRESSED USING '&' (NOT SPACE)
# 'OR' PIPE '
-
Seems like making the following change would work:
EXIT_TO_WINDOWS "DIK_LALT & DIK_F"
If you wanted to exit using ESC as well as Alt-F4, then this works for me:
EXIT_TO_WINDOWS "DIK_ESCAPE | DIK_LALT & DIK_F"
-
you forgot thre F4 (you just used F). It is probably something like so:
"DIK_LALT & DIK_F4"
John
-
Just tried it and it doesn't work ??? EXIT_TO_WINDOWS "DIK_ESCAPE | DIK_LALT & DIK_F4" When I press Esc it works but when I try Alt+F4 nothing happens. Am I missing something?
-
Just tried it and it doesn't work ??? EXIT_TO_WINDOWS "DIK_ESCAPE | DIK_LALT & DIK_F4" When I press Esc it works but when I try Alt+F4 nothing happens. Am I missing something?
EXIT_TO_WINDOWS "DIK_ESCAPE | DIK_LALT & DIK_F4"
Works for me. I just tried it! Are you using the DIK_LALT or DIK_F4 for something else? Just a thought.
John
-
Thank you for your help guys. ;D You were right jcrouse I had never changed anything but by default DIK_LALT was being used for PREVIOUS_TRACK and LAUNCH_GAME_WITH_OPTIONS2. Just deleted both and it now works. Thank you all once again.