comparison default.cfg @ 1648:b7ecd0d6a77b mame_interp

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Tue, 25 Dec 2018 11:12:26 -0800
parents bc9bb4e5856f
children 19331a21da3a
comparison
equal deleted inserted replaced
1509:36732f5c2281 1648:b7ecd0d6a77b
17 r ui.release_mouse 17 r ui.release_mouse
18 [ ui.vdp_debug_mode 18 [ ui.vdp_debug_mode
19 ] ui.vdp_debug_pal 19 ] ui.vdp_debug_pal
20 u ui.enter_debugger 20 u ui.enter_debugger
21 p ui.screenshot 21 p ui.screenshot
22 b ui.plane_debug
23 v ui.vram_debug
24 c ui.cram_debug
25 n ui.compositing_debug
22 esc ui.exit 26 esc ui.exit
23 ` ui.save_state 27 ` ui.save_state
24 0 ui.set_speed.0 28 0 ui.set_speed.0
25 1 ui.set_speed.1 29 1 ui.set_speed.1
26 2 ui.set_speed.2 30 2 ui.set_speed.2
36 f5 ui.reload 40 f5 ui.reload
37 z ui.sms_pause 41 z ui.sms_pause
38 rctrl ui.toggle_keyboard_captured 42 rctrl ui.toggle_keyboard_captured
39 } 43 }
40 pads { 44 pads {
41 0 { 45 default {
42 dpads { 46 dpads {
43 0 { 47 0 {
44 up gamepads.1.up 48 up gamepads.n.up
45 down gamepads.1.down 49 down gamepads.n.down
46 left gamepads.1.left 50 left gamepads.n.left
47 right gamepads.1.right 51 right gamepads.n.right
48 } 52 }
49 } 53 }
50 buttons { 54 buttons {
51 a gamepads.1.a 55 a gamepads.n.a
52 b gamepads.1.b 56 b gamepads.n.b
53 rightshoulder gamepads.1.c 57 rightshoulder gamepads.n.c
54 x gamepads.1.x 58 x gamepads.n.x
55 y gamepads.1.y 59 y gamepads.n.y
56 leftshoulder gamepads.1.z 60 leftshoulder gamepads.n.z
57 back gamepads.1.mode 61 back gamepads.n.mode
58 start gamepads.1.start 62 start gamepads.n.start
59 guide ui.exit 63 guide ui.exit
60 leftstick ui.save_state 64 leftstick ui.save_state
61 } 65 }
62 axes { 66 axes {
63 lefty.positive gamepads.1.down 67 lefty.positive gamepads.n.down
64 lefty.negative gamepads.1.up 68 lefty.negative gamepads.n.up
65 leftx.positive gamepads.1.right 69 leftx.positive gamepads.n.right
66 leftx.negative gamepads.1.left 70 leftx.negative gamepads.n.left
67 lefttrigger ui.prev_speed 71 lefttrigger ui.prev_speed
68 righttrigger ui.next_speed 72 righttrigger ui.next_speed
69 }
70 }
71 1 {
72 dpads {
73 0 {
74 up gamepads.2.up
75 down gamepads.2.down
76 left gamepads.2.left
77 right gamepads.2.right
78 }
79 }
80 buttons {
81 #this is exactly the same mapping as above, but with PS4 style names
82 cross gamepads.2.a
83 circle gamepads.2.b
84 r1 gamepads.2.c
85 square gamepads.2.x
86 triangle gamepads.2.y
87 l1 gamepads.2.z
88 share gamepads.2.mode
89 options gamepads.2.start
90 guide ui.exit
91 l3 ui.save_state
92 }
93 axes {
94 lefty.positive gamepads.2.down
95 lefty.negative gamepads.2.up
96 leftx.positive gamepads.2.right
97 leftx.negative gamepads.2.left
98 l2 ui.prev_speed
99 r2 ui.next_speed
100 } 73 }
101 } 74 }
102 } 75 }
103 mice { 76 mice {
104 0 { 77 0 {
215 #if it's set to off, initial_path will always be used on startup 188 #if it's set to off, initial_path will always be used on startup
216 remember_path on 189 remember_path on
217 #path for storing internal screenshots, accepts the same variables as initial_path 190 #path for storing internal screenshots, accepts the same variables as initial_path
218 screenshot_path $HOME 191 screenshot_path $HOME
219 #see strftime for the format specifiers valid in screenshot_template 192 #see strftime for the format specifiers valid in screenshot_template
220 screenshot_template blastem_%Y%m%d_%H%M%S.ppm 193 screenshot_template blastem_%Y%m%d_%H%M%S.png
221 #path template for saving SRAM, EEPROM and savestates 194 #path template for saving SRAM, EEPROM and savestates
222 #accepts special variables $HOME, $EXEDIR, $USERDATA, $ROMNAME 195 #accepts special variables $HOME, $EXEDIR, $USERDATA, $ROMNAME
223 save_path $USERDATA/blastem/$ROMNAME 196 save_path $USERDATA/blastem/$ROMNAME
224 #space delimited list of file extensions to filter against in menu 197 #space delimited list of file extensions to filter against in menu
225 extensions bin gen md smd sms gg 198 extensions bin gen md smd sms gg zip gz
226 #specifies the preferred save-state format, set to gst for Genecyst compatible states 199 #specifies the preferred save-state format, set to gst for Genecyst compatible states
227 state_format native 200 state_format native
228 } 201 }
229 202
230 system { 203 system {
204 #controls how the emulated system is synced to the host
205 #video provides the smoothest experience when the host and emulated system have similar refresh rates
206 #audio provides lower audio latency, especially when there is a refresh rate mismatch
207 sync_source video
208 #set this to random to debug initialization bugs
231 ram_init zero 209 ram_init zero
232 default_region U 210 default_region U
233 } 211 #controls whether MegaWiFi support is enabled or not
234 212 #MegaWiFi allows ROMs to make connections to the internet
235 213 #so it should only be enabled for ROMs you trust
214 megawifi off
215 }
216
217