-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes_features.cfg
9873 lines (9873 loc) · 545 KB
/
es_features.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<features>
<sharedFeatures>
<feature name="POWER MODE" value="powermode" description="Adjust the cpu power profile while in-game.">
<choice name="High Performance" value="highperformance" />
<choice name="Balanced" value="balanced" />
<choice name="Power Saver" value="powersaver" />
</feature>
<feature name="RYZEN THERMAL DESIGN POWER" value="tdp" description="Adjust the percentage of power (watts) provided to a Ryzen Mobile Series CPU based on it's default max value. Caution, setting wattage too high could damage your device.">
<choice name="10%" value="10" />
<choice name="20%" value="20" />
<choice name="30%" value="30" />
<choice name="40%" value="40" />
<choice name="50%" value="50" />
<choice name="60%" value="60" />
<choice name="70%" value="70" />
<choice name="80%" value="80" />
<choice name="90%" value="90" />
<choice name="100%" value="100" />
<choice name="105% (Use caution" value="105" />
<choice name="110% (Use caution)" value="110" />
<choice name="115% (Use caution)" value="115" />
<choice name="120% (Are you crazy?)" value="120" />
<choice name="125% (Yes, you're crazy)" value="125" />
<choice name="130% (Nope, you're just insane!)" value="130" />
</feature>
<feature name="VIDEO MODE" value="videomode" description="Set the display's resolution. Does not affect the rendering resolution." preset="videomodes">
</feature>
<feature name="GAME ASPECT RATIO" value="ratio" description="Force the game to render in this aspect ratio. Not all systems support all ratios.">
<choice name="4/3" value="4/3" />
<choice name="16/9" value="16/9" />
<choice name="Full" value="full" />
<choice name="16/10" value="16/10" />
<choice name="16/15" value="16/15" />
<choice name="21/9" value="21/9" />
<choice name="1/1" value="1/1" />
<choice name="2/1" value="2/1" />
<choice name="3/2" value="3/2" />
<choice name="3/4" value="3/4" />
<choice name="4/1" value="4/1" />
<choice name="9/16" value="9/16" />
<choice name="5/4" value="5/4" />
<choice name="6/5" value="6/5" />
<choice name="7/9" value="7/9" />
<choice name="8/3" value="8/3" />
<choice name="8/7" value="8/7" />
<choice name="19/12" value="19/12" />
<choice name="19/14" value="19/14" />
<choice name="30/17" value="30/17" />
<choice name="32/9" value="32/9" />
<choice name="Config" value="config" />
<choice name="Square pixel" value="squarepixel" />
<choice name="Core provided" value="core" />
<choice name="Custom" value="custom" />
</feature>
<feature name="REWIND" value="rewind" description="Store past states to rewind to in realtime, if the core supports it.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="AUTO SAVE/LOAD ON GAME LAUNCH" value="autosave" description="Load latest save state on game launch and save state when exiting game.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="SHADER SET" submenu="GAME RENDERING & SHADERS" value="shaderset" description="" preset="shaderset">
</feature>
<feature name="SMOOTH GAMES (BILINEAR FILTERING)" submenu="GAME RENDERING & SHADERS" value="smooth" description="Disabled if using a shader set or the output display matches the game's resolution.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="INTEGER SCALING (PIXEL PERFECT)" submenu="GAME RENDERING & SHADERS" value="integerscale" description="Only increase the image size in integer multiples.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="DECORATION SET" submenu="DECORATIONS" value="bezel" description="" preset="bezel">
</feature>
<feature name="STRETCH BEZELS (4K & ULTRAWIDE)" submenu="DECORATIONS" value="bezel_stretch" description="">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="HEADS UP DISPLAY" submenu="DECORATIONS" value="hud" description="Show context-sensitive info over the game.">
<choice name="None" value="none" />
<choice name="Game info/art" value="game" />
<choice name="Performance" value="perf" />
<choice name="Custom" value="custom" />
</feature>
<feature name="HEADS UP DISPLAY CORNER" submenu="DECORATIONS" value="hud_corner" description="">
<choice name="TOP LEFT (NW)" value="NW" />
<choice name="TOP RIGHT (NE)" value="NE" />
<choice name="BOTTOM RIGHT (SE)" value="SE" />
<choice name="BOTTOM LEFT (SW)" value="SW" />
</feature>
<feature name="SHOW TATTOO OVER BEZEL" submenu="DECORATIONS" value="bezel.tattoo" description="Show an image overlaid on top of the bezel.">
<choice name="NO" value="0" />
<choice name="SYSTEM CONTROLLERS" value="system" />
<choice name="CUSTOM IMAGE" value="custom" />
</feature>
<feature name="TATTOO CORNER" submenu="DECORATIONS" value="bezel.tattoo_corner" description="">
<choice name="TOP LEFT (NW)" value="NW" />
<choice name="TOP RIGHT (NE)" value="NE" />
<choice name="BOTTOM RIGHT (SE)" value="SE" />
<choice name="BOTTOM LEFT (SW)" value="SW" />
</feature>
<feature name="CUSTOM .PNG IMAGE PATH" submenu="DECORATIONS" value="bezel.tattoo_file" description="" preset="image">
</feature>
<feature name="RESIZE TATTOO" submenu="DECORATIONS" value="bezel.resize_tattoo" description="Shrink/expand tattoo to fit within the bezel's border." preset="switchon">
</feature>
<feature name="ENABLE AI TRANSLATION SERVICE" submenu="AI GAME TRANSLATION" value="ai_service_enabled" description="During gameplay, press Hotkey + R1 to translate on-screen text. Only on libretro cores." preset="switch">
</feature>
<feature name="TARGET LANGUAGE" submenu="AI GAME TRANSLATION" value="ai_target_lang" description="The language to translate into.">
<choice name="ENGLISH" value="En" />
<choice name="FRANÇAIS" value="Fr" />
<choice name="PORTUGUÊS" value="Pt" />
<choice name="DEUTSCH" value="De" />
<choice name="GREEK" value="El" />
<choice name="ESPAÑOL" value="Es" />
<choice name="CZECH" value="Cs" />
<choice name="DANISH" value="Da" />
<choice name="CROATIAN" value="Hr" />
<choice name="HUNGARIAN" value="Hu" />
<choice name="ITALIANO" value="It" />
<choice name="JAPANESE" value="Ja" />
<choice name="KOREAN" value="Ko" />
<choice name="DUTCH" value="Nl" />
<choice name="NORWEGIAN" value="Nn" />
<choice name="POLISH" value="Po" />
<choice name="ROMANIAN" value="Ro" />
<choice name="РУССКИЙ" value="Ru" />
<choice name="SVENSKA" value="Sv" />
<choice name="TÜRKÇE" value="Tr" />
<choice name="简体中文" value="Zh" />
</feature>
<feature name="AI TRANSLATION SERVICE URL" submenu="AI GAME TRANSLATION" value="ai_service_url" description="If nothing is specified, will use ZTranslate by default." preset="input">
</feature>
<feature name="PAUSE ON TRANSLATED SCREEN" submenu="AI GAME TRANSLATION" value="ai_service_pause" description="" preset="switch">
</feature>
<feature name="RUN-AHEAD FRAMES" submenu="LATENCY REDUCTION" value="runahead" description="Enables run-ahead. Doubles CPU requirements. High numbers can result in visible jitter.">
<choice name="None" value="0" />
<choice name="1" value="1" />
<choice name="2" value="2" />
<choice name="3" value="3" />
<choice name="4" value="4" />
<choice name="5" value="5" />
<choice name="6" value="6" />
</feature>
<feature name="USE SECOND INSTANCE FOR RUN-AHEAD" submenu="LATENCY REDUCTION" value="secondinstance" description="Can prevent audio skips on button presses when using run-ahead.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="AUTOMATIC FRAME DELAY" submenu="LATENCY REDUCTION" value="video_frame_delay_auto" description="Automatically decrease frame delay temporarily to prevent frame drops. Can introduce stuttering.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="VARIABLE REFRESH RATE" submenu="LATENCY REDUCTION" value="vrr_runloop_enable" description="Don't deviate from core requested timing. G-Sync, FreeSync, HDMI 2.1 VRR.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="THREADED VIDEO" submenu="LATENCY REDUCTION" value="video_threaded" description="Improves performance at the cost of latency and more video stuttering.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="USE LIGHT GUNS" group="LIGHT GUN" value="use_guns" description="Use light guns instead of pads if light guns are connected.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="USE WHEELS" group="WHEELS" value="use_wheels" description="Use wheels instead of pads if wheels are connected.">
<choice name="On" value="1" />
<choice name="Off" value="0" />
</feature>
<feature name="WHEEL ROTATION" group="WHEELS" value="wheel_rotation_angle" description="Maximum wheel rotation from left to right (in degrees)">
<choice name="150" value="150" />
<choice name="180" value="180" />
<choice name="200" value="200" />
<choice name="240" value="240" />
<choice name="270" value="270" />
<choice name="360" value="360" />
<choice name="720" value="720" />
<choice name="900" value="900" />
<choice name="1080" value="1080" />
</feature>
<feature name="WHEEL DEADZONE" group="WHEELS" value="wheel_deadzone" description="Zone for which the game doesn't react to the wheel (in degrees)">
<choice name="5" value="5" />
<choice name="10" value="10" />
<choice name="15" value="15" />
<choice name="20" value="20" />
<choice name="25" value="25" />
<choice name="30" value="30" />
<choice name="35" value="35" />
<choice name="40" value="40" />
<choice name="45" value="45" />
<choice name="50" value="50" />
</feature>
<feature name="WHEEL MIDZONE" group="WHEELS" value="wheel_midzone" description="Reserve a non dead zone at the center of the wheel to go straight ahead (in degrees)">
<choice name="1" value="1" />
<choice name="2" value="2" />
<choice name="3" value="3" />
<choice name="4" value="4" />
<choice name="5" value="5" />
<choice name="6" value="6" />
<choice name="7" value="7" />
<choice name="8" value="8" />
<choice name="9" value="9" />
<choice name="10" value="10" />
</feature>
<feature name="RUMBLE LEVEL" value="rumble_gain" description="For emulators and controllers supporting force feedback.">
<choice name="disabled" value="1" />
<choice name="20%" value="20" />
<choice name="40%" value="40" />
<choice name="60%" value="60" />
<choice name="80%" value="80" />
<choice name="100%" value="100" />
</feature>
<feature name="AUDIO VOLUME GAIN" value="audio_volume" description="Set game audio level gain in dB.">
<choice name="-12" value="-12.0" />
<choice name="-10" value="-10.0" />
<choice name="-8" value="-8.0" />
<choice name="-6" value="-6.0" />
<choice name="-4" value="-4.0" />
<choice name="-2" value="-2.0" />
<choice name="0 (No gain)" value="0" />
<choice name="+2" value="2.0" />
<choice name="+4" value="4.0" />
<choice name="+6" value="6.0" />
<choice name="+8" value="8.0" />
<choice name="+10" value="10.0" />
<choice name="+12" value="12.0" />
</feature>
<feature name="BORDER MODE" group="LIGHT GUN" value="bordersmode" description="Show/Hide guns borders for specific systems">
<choice name="normal" value="normal" />
<choice name="hidden" value="hidden" />
</feature>
</sharedFeatures>
<globalFeatures>
<sharedFeature value="powermode" />
<sharedFeature value="tdp" />
<sharedFeature value="videomode" />
<sharedFeature value="ratio" />
<sharedFeature value="shaderset" />
<sharedFeature value="smooth" />
<sharedFeature value="integerscale" />
<sharedFeature value="bezel" />
<sharedFeature value="bezel_stretch" />
<sharedFeature value="hud" />
<sharedFeature value="hud_corner" />
<sharedFeature value="bezel.tattoo" />
<sharedFeature value="bezel.tattoo_corner" />
<sharedFeature value="bezel.tattoo_file" />
<sharedFeature value="bezel.resize_tattoo" />
<sharedFeature value="ai_service_enabled" />
<sharedFeature value="ai_target_lang" />
<sharedFeature value="ai_service_url" />
<sharedFeature value="ai_service_pause" />
<sharedFeature value="rewind" />
<sharedFeature value="runahead" />
<sharedFeature value="secondinstance" />
<sharedFeature value="video_frame_delay_auto" />
<sharedFeature value="vrr_runloop_enable" />
<sharedFeature value="video_threaded" />
<sharedFeature value="rumble_gain" />
</globalFeatures>
<emulator name="libretro" features="">
<cores>
<core name="81" features="netplay, padtokeyboard">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<feature name="COLORIZATION" group="ADVANCED OPTIONS" value="81_chroma_81" description="Emulate Chroma 81 interface (colorization).">
<choice name="Autodetect" value="automatic" />
<choice name="Off" value="disabled" />
<choice name="On (forced)" value="enabled" />
</feature>
<feature name="WRX HIGH RESOLUTION" group="ADVANCED OPTIONS" value="81_highres" description="Required for some homebrew.">
<choice name="Autodetect" value="automatic" />
<choice name="Off" value="none" />
<choice name="On (forced)" value="WRX" />
</feature>
</core>
<core name="arduous" features="cheevos" />
<core name="atari800" features="padtokeyboard">
<systems>
<system name="atari800" features="" >
<feature name="ATARI SYSTEM" group="ADVANCED OPTIONS" value="atari800_system" description="">
<choice name="400/600XL/800 (48K) (OS B)" value="400/800 (OS B)" />
<choice name="800XL/1200XL/XEGS (64K)" value="800XL (64K)" />
<choice name="130XE (128K)" value="130XE (128K)" />
<choice name="Modern XL/XE (320K CS)" value="Modern XL/XE(320K CS)" />
<choice name="Modern XL/XE (576K)" value="Modern XL/XE(576K)" />
<choice name="Modern XL/XE (1088K)" value="Modern XL/XE(1088K)" />
</feature>
<feature name="VIDEO FORMAT STANDARD" value="atari800_ntscpal" description="">
<choice name="NTSC 240x480px 60Hz" value="NTSC" />
<choice name="PAL 288x576px 50Hz" value="PAL" />
</feature>
<feature name="SIO ACCELERATION" group="ADVANCED OPTIONS" value="atari800_sioaccel" description="Speeds up file loading. Some games won't load with this.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
<feature name="HI-RES ARTIFACTING" group="ADVANCED OPTIONS" value="atari800_artifacting" description="Emulate NTSC quirks to show more colors in hi-res mode.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
<feature name="INTERNAL RESOLUTION" value="atari800_resolution" description="Use an alternate resolution. Some games need this.">
<choice name="336x240" value="336x240" />
<choice name="320x240" value="320x240" />
<choice name="384x240" value="384x240" />
<choice name="384x272" value="384x272" />
<choice name="384x288" value="384x288" />
<choice name="400x300" value="400x300" />
</feature>
<feature name="INTERNAL BASIC INTERPRETER" value="atari800_internalbasic" description="Enable the BASIC interpreter. Some games need this.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
</system>
<system name="atari5200" features="" >
<feature name="JOYSTICK HACK (FOR ROBOTRON 2084)" group="ADVANCED OPTIONS" value="atari800_opt2" description="Treats the right analog stick as the second joystick.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
</system>
</systems>
</core>
<core name="beetle-saturn" features="netplay, cheevos">
<sharedFeature value="autosave" />
<sharedFeature value="use_guns" />
<sharedFeature value="use_wheels" />
<sharedFeature value="wheel_rotation_angle" />
<sharedFeature value="wheel_deadzone" />
<sharedFeature value="wheel_midzone" />
<feature name="LIGHT GUN CROSSHAIR" group="LIGHT GUN" value="beetle-saturn_crosshair" description="">
<choice name="Cross" value="Cross" />
<choice name="Dot" value="Dot" />
<choice name="Disabled" value="Off" />
</feature>
<feature name="AUTO WIDESCREEN" value="beetle-saturn-autowidescreen" description="Automatically sets aspect ratio to 16/9 for games that natively support it. 2D elements like HUD/UI may be stretched.">
<choice name="Off" value="False" />
<choice name="On" value="True" />
</feature>
<feature name="CONTROLLER 1 TYPE" value="controller1_saturn" description="Not all games support 3D pad.">
<choice name="Saturn Pad" value="1" />
<choice name="Saturn 3D Pad" value="5" />
</feature>
<feature name="CONTROLLER 2 TYPE" value="controller2_saturn" description="Not all games support 3D pad.">
<choice name="Saturn Pad" value="1" />
<choice name="Saturn 3D Pad" value="5" />
</feature>
</core>
<core name="fmsx" features="netplay, cheevos">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
</core>
<core name="bluemsx" features="padtokeyboard, cheevos">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<feature name="ZOOM (HIDE BORDERS)" value="bluemsx_overscan" description="Hides borders on many games. Some games used the borders.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
<choice name="MSX2" value="MSX2" />
</feature>
<feature name="REDUCE SPRITE FLICKERING" value="bluemsx_nospritelimits" description="Enhancement. Remove the four sprites per line limit.">
<choice name="Off" value="False" />
<choice name="On" value="True" />
</feature>
</core>
<core name="bsnes" features="netplay, cheevos">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<sharedFeature value="use_guns" />
<feature name="VIDEO FILTERS" value="bsnes_video_filter" description="Apply a video filter to mimic various NTSC TV signals.">
<choice name="Off" value="None" />
<choice name="NTSC (RF)" value="NTSC (RF)" />
<choice name="NTSC (RGB)" value="NTSC (RGB)" />
<choice name="NTSC (S-Video)" value="NTSC (S-Video)" />
<choice name="NTSC (Composite)" value="NTSC (Composite)" />
</feature>
</core>
<core name="bsnes_hd" features="netplay, cheevos">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
</core>
<core name="cap32" features="netplay, cheevos, padtokeyboard">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<feature name="CPC MODEL" value="cap32_model" description="">
<choice name="464" value="464" />
<choice name="6128" value="6128" />
<choice name="6128+" value="6128+" />
</feature>
<feature name="EMULATED RAM SIZE" group="ADVANCED OPTIONS" value="cap32_ram" description="">
<choice name="64KB" value="64" />
<choice name="128KB" value="128" />
<choice name="192+KB" value="192" />
<choice name="512KB" value="512" />
<choice name="576+KB" value="576" />
</feature>
<feature name="COLOUR DEPTH" value="cap32_colour" description="Choose the emulated colour depth.">
<choice name="16 bit" value="16bit" />
<choice name="24 bit (Default)" value="24bit" />
</feature>
<feature name="LANGUAGE" value="cap32_language" description="Change the game's language.">
<choice name="English (Default)" value="english" />
<choice name="Spanish" value="spanish" />
<choice name="French" value="french" />
</feature>
</core>
<core name="mesen-s" features="netplay, padtokeyboard">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<sharedFeature value="use_guns" />
<feature name="BLARGG NTSC FILTER" group="ADVANCED OPTIONS" value="mesen-s_ntsc_filter" description="Core-powered video filter.">
<choice name="Disabled" value="disabled" />
<choice name="Composite (Blargg)" value="Composite (Blargg)" />
<choice name="S-Video (Blargg)" value="S-Video (Blargg)" />
<choice name="RGB (Blargg)" value="RGB (Blargg)" />
<choice name="Monochrome (Blargg)" value="Monochrome (Blargg)" />
</feature>
<feature name="HIGH-RES BLENDING" group="ADVANCED OPTIONS" value="mesen-s_blend_high_res" description="Blur high-res mode, allowing for better transparency effects.">
<choice name="On" value="enabled" />
<choice name="Off" value="disabled" />
</feature>
<feature name="CUBIC AUDIO INTERPOLATION" group="ADVANCED OPTIONS" value="mesen-s_cubic_interpolation" description="Enhancement. Swap from SNES' guassian interpolation to cubic. Improves sound quality.">
<choice name="On" value="enabled" />
<choice name="Off" value="disabled" />
</feature>
<feature name="GAME BOY MODE" group="ADVANCED OPTIONS" value="mesen-s_gbmodel" description="Change behaviour when emulating GB games. Auto uses SGB for GB and GBC for GBC.">
<choice name="Game Boy" value="Game Boy" />
<choice name="Game Boy Color" value="Game Boy Color" />
<choice name="Super Game Boy" value="Super Game Boy" />
</feature>
<feature name="SUPER GAME BOY 2" group="ADVANCED OPTIONS" value="mesen-s_sgb2" description="Emulate the Super Game Boy 2 for SGB. Runs games at the correct speed.">
<choice name="On" value="enabled" />
<choice name="Off" value="disabled" />
</feature>
<feature name="OVERCLOCK (UNSTABLE)" group="ADVANCED OPTIONS" value="mesen-s_overclock" description="Enhancement. Reduces system slowdown. Causes issues in some games.">
<choice name="None" value="None" />
<choice name="Low" value="Low" />
<choice name="Medium" value="Medium" />
<choice name="High" value="High" />
<choice name="Very High" value="Very High" />
</feature>
<feature name="OVERCLOCK TYPE" group="ADVANCED OPTIONS" value="mesen-s_overclock_type" description="Prefer "Before NMI", change to After NMI only if needed by the game.">
<choice name="Before NMI" value="Before NMI" />
<choice name="After NMI" value="After NMI" />
</feature>
<feature name="SUPER FX OVERCLOCK" group="ADVANCED OPTIONS" value="mesen-s_superfx_overclock" description="Enhancement. Reduces slowdown in mode 7 games.">
<choice name="100%" value="100%" />
<choice name="200%" value="200%" />
<choice name="300%" value="300%" />
<choice name="400%" value="400%" />
<choice name="500%" value="500%" />
<choice name="1000%" value="1000%" />
</feature>
</core>
<core name="mesen" features="netplay, padtokeyboard">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<feature name="CONSOLE REGION" value="mesen_region" description="Dendy is a popular Russian clone with unique characteristics.">
<choice name="NTSC" value="NTSC" />
<choice name="PAL" value="PAL" />
<choice name="Dendy" value="Dendy" />
</feature>
<feature name="DISPLAY ROTATION" value="mesen_screenrotation" description="Rotate the screen, useful for certain vertical gameplay homebrews.">
<choice name="None" value="None" />
<choice name="90 degrees" value="90 degrees" />
<choice name="180 degrees" value="180 degrees" />
<choice name="270 degrees" value="270 degrees" />
</feature>
<feature name="NTSC FILTER" value="mesen_ntsc_filter" description="Core-powered video filter. Bisqwit filters are CPU heavy.">
<choice name="Disabled" value="Disabled" />
<choice name="Composite (Blargg)" value="Composite (Blargg)" />
<choice name="S-Video (Blargg)" value="S-Video (Blargg)" />
<choice name="RGB (Blargg)" value="RGB (Blargg)" />
<choice name="Monochrome (Blargg)" value="Monochrome (Blargg)" />
<choice name="Bisqwit 2x" value="Bisqwit 2x" />
<choice name="Bisqwit 4x" value="Bisqwit 4x" />
<choice name="Bisqwit 8x" value="Bisqwit 8x" />
</feature>
<feature name="REDUCE SPRITE FLICKERING" value="mesen_nospritelimit" description="Enhancement. Remove the eight sprite per line limit.">
<choice name="Off" value="False" />
<choice name="On" value="True" />
</feature>
<feature name="COLOR PALETTE" value="mesen_palette" description="">
<choice name="Default" value="Default" />
<choice name="Composite Direct (FirebrandX)" value="Composite Direct (by FirebrandX)" />
<choice name="Nes Classic" value="Nes Classic" />
<choice name="Nestopia (RGB)" value="Nestopia (RGB)" />
<choice name="Original Hardware (FirebrandX)" value="Original Hardware (by FirebrandX)" />
<choice name="PVM Style (FirebrandX)" value="PVM Style (by FirebrandX)" />
<choice name="Sony CXA2025AS" value="Sony CXA2025AS" />
<choice name="Unsaturated v6 (FirebrandX)" value="Unsaturated v6 (by FirebrandX)" />
<choice name="YUV v3 (Firebrand)" value="YUV v3 (by FirebrandX)" />
<choice name="Custom" value="Custom" />
</feature>
<feature name="LOAD CUSTOM TEXTURES" value="mesen_hdpacks" description="For use with HD texture packs.">
<choice name="Off" value="False" />
<choice name="On" value="True" />
</feature>
<feature name="(FDS) AUTOMATICALLY LOAD DISK SIDE A" value="mesen_fdsautoinsertdisk" description="Avoids having to manually load side A every time.">
<choice name="Off" value="False" />
<choice name="On" value="True" />
</feature>
<feature name="(FDS) FAST FORWARD DISK LOADING" group="ADVANCED OPTIONS" value="mesen_fdsfastforwardload" description="Reduce load time at the cost of accuracy.">
<choice name="Off" value="False" />
<choice name="On" value="True" />
</feature>
<feature name="DEFAULT POWER ON RAM STATE" group="ADVANCED OPTIONS" value="mesen_ramstate" description="Useful for speedruns/glitches.">
<choice name="All 0s (Default)" value="All 0s (Default)" />
<choice name="All 1s" value="All 1s" />
<choice name="Random Values" value="Random Values" />
</feature>
<feature name="OVERCLOCK (UNSTABLE)" group="ADVANCED OPTIONS" value="mesen_overclock" description="Enhancement. Reduces system slowdown. Causes issues in some games.">
<choice name="None" value="None" />
<choice name="Low" value="Low" />
<choice name="Medium" value="Medium" />
<choice name="High" value="High" />
<choice name="Very High" value="Very High" />
</feature>
<feature name="OVERCLOCK TYPE" group="ADVANCED OPTIONS" value="mesen_overclock_type" description="Prefer "Before NMI", change to After NMI only if needed by the game.">
<choice name="Before NMI" value="Before NMI (Recommended)" />
<choice name="After NMI" value="After NMI" />
</feature>
</core>
<core name="citra" features="">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
</core>
<core name="daphne" features="padtokeyboard" />
<core name="desmume" features="netplay, cheevos">
<sharedFeature value="rewind" />
<sharedFeature value="autosave" />
<feature name="RENDERING RESOLUTION" value="internal_resolution_desmume" description="Enhancement. Increase the rendering resolution. Makes 3D objects clearer.">
<choice name="1x (256x192)" value="256x192" />
<choice name="2x (512x384)" value="512x384" />
<choice name="3x (768x576)" value="768x576" />
<choice name="4x (1024x768)" value="1024x768" />
<choice name="5x (1280x960)" value="1280x960" />
<choice name="6x (1536x1152)" value="1536x1152" />
<choice name="7x (1792x1344)" value="1792x1344" />
<choice name="8x (2048x1536)" value="2048x1536" />
<choice name="9x (2304x1728)" value="2304x1728" />
<choice name="10x (2560x1920)" value="2560x1920" />
</feature>
<feature name="TEXTURE UPSCALING (XBRZ)" group="ADVANCED OPTIONS" value="texture_scaling" description="Enhancement. Upscales textures on 3D objects.">
<choice name="Off" value="1" />
<choice name="2x" value="2" />
<choice name="4x" value="4" />
</feature>
<feature name="TEXTURE SMOOTHING" value="texture_smoothing" description="Smooths out textures on 3D objects.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
<feature name="ANTI-ALIASING (MSAA)" group="ADVANCED OPTIONS" value="multisampling" description="Enhancement. Smooth out jagged edges on 3D object polygons.">
<choice name="Off" value="disabled" />
<choice name="2x" value="2" />
<choice name="4x" value="4" />
<choice name="8x" value="8" />
<choice name="16x" value="16" />
<choice name="32x" value="32" />
</feature>
<feature name="SCREEN LAYOUT" value="screens_layout" description="Arrange the dual screen layout.">
<choice name="top/bottom" value="top/bottom" />
<choice name="bottom/top" value="bottom/top" />
<choice name="left/right" value="left/right" />
<choice name="right/left" value="right/left" />
<choice name="top only" value="top only" />
<choice name="bottom only" value="bottom only" />
<choice name="quick switch" value="quick switch" />
<choice name="hybrid/top" value="hybrid/top" />
<choice name="hybrid/bottom" value="hybrid/bottom" />
</feature>
<feature name="FRAMESKIP" value="frameskip_desmume" description="Skip frames to improve performance, at the cost of choppy motion.">
<choice name="Off" value="0" />
<choice name="1" value="1" />
<choice name="2" value="2" />
<choice name="3" value="3" />
<choice name="4" value="4" />
<choice name="5" value="5" />
<choice name="6" value="6" />
<choice name="7" value="7" />
<choice name="8" value="8" />
<choice name="9" value="9" />
</feature>
</core>
<core name="melonds" features="cheevos">
<sharedFeature value="autosave" />
<feature name="NDS VERSION" value="melonds_console_mode" description="">
<choice name="DS (Default)" value="DS" />
<choice name="DSi" value="DSi" />
</feature>
<feature name="SKIP DS SYSTEM MENU" value="melonds_boot_directly" description="Disable to access the system's settings, like time and language.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
<feature name="USE FIRMWARE SETTINGS" value="melonds_use_fw_settings" description="Use language and username from the NDS Firmware">
<choice name="ON" value="enable" />
<choice name="OFF (Default)" value="disable" />
</feature>
<feature name="LANGUAGE" value="melonds_language" description="Select language will be used if 'Use Firmware Settings' is disabled or if firmware file was not found.">
<choice name="English (Default)" value="English" />
<choice name="French" value="French" />
<choice name="German" value="German" />
<choice name="Italian" value="Italian" />
<choice name="Spanish" value="Spanish" />
<choice name="Japanese" value="Japanese" />
</feature>
<feature name="SCREEN LAYOUT" value="melonds_screen_layout" description="Arrange the dual screen layout.">
<choice name="top/bottom" value="Top/Bottom" />
<choice name="bottom/top" value="Bottom/Top" />
<choice name="left/right" value="Left/Right" />
<choice name="right/left" value="Right/Left" />
<choice name="top only" value="Top Only" />
<choice name="bottom only" value="Bottom Only" />
<choice name="hybrid top ratio 2" value="Hybrid Top-Ratio2" />
<choice name="hybrid top ratio 3" value="Hybrid Top-Ratio3" />
<choice name="hybrid bottom ratio 2" value="Hybrid Bottom-Ratio2" />
<choice name="hybrid bottom ratio 3" value="Hybrid Bottom-Ratio3" />
</feature>
<feature name="TOUCH SCREEN MODE" value="melonds_touch_mode" description="Select the input type to navigate the touch screen">
<choice name="None" value="Disabled" />
<choice name="Mouse" value="Mouse" />
<choice name="Touch Screen" value="Touch" />
<choice name="Right Stick" value="Joystick" />
</feature>
</core>
<core name="melondsds" features="cheevos">
<sharedFeature value="autosave" />
<feature name="NDS VERSION" value="melondsds_console_mode" description="">
<choice name="DS" value="DS" />
<choice name="DSi (Experiemental)" value="DSi" />
</feature>
<feature name="RENDERER MODE" submenu="VIDEO SETTINGS" value="melondsds_render_mode" description="Software mode is faster and more accurate, while OpenGL mode supports scaling 3D graphics.">
<choice name="Software" value="software" />
<choice name="OpenGL (Overwrites Libretro API settings)" value="opengl" />
</feature>
<feature name="INTERNAL RESOLUTION" submenu="VIDEO SETTINGS" value="melondsds_resolution" description="Degree in which 3D graphics are scaled up. OpenGL renderer only.">
<choice name="1x native (256 x 192)" value="1" />
<choice name="2x native (512 x 384)" value="2" />
<choice name="3x native (768 x 576)" value="3" />
<choice name="4x native (1024 x 768)" value="4" />
<choice name="5x native (1280 x 960)" value="5" />
<choice name="6x native (1536 x 1152)" value="6" />
<choice name="7x native (1792 x 1344)" value="7" />
<choice name="8x native (2048 x 1536)" value="8" />
</feature>
<feature name="IMPROVED POLYGON SPLITTING" submenu="VIDEO SETTINGS" value="melondsds_poygon" description="Enable this if your game's 3D modles are not rendered correctly. OpenGL renderer only.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<feature name="SCREEN FILTERING" submenu="VIDEO SETTINGS" value="melondsds_filtering" description="Affects how the emulated screens are scaled. OpenGL renderer only.">
<choice name="Nearest" value="nearest" />
<choice name="Linear" value="linear" />
</feature>
<feature name="CURSOR MODE" submenu="SCREEN SETTINGS" value="melondsds_cursor" description="Determines how the cursor should apprear on the botton screen.">
<choice name="Never" value="never" />
<choice name="While Touching" value="touching" />
<choice name="Until Timeout" value="timeout" />
<choice name="Always" value="always" />
</feature>
<feature name="CURSOR TIMEOUT" submenu="SCREEN SETTINGS" value="melondsds_cursor_timeout" description="Cursor timeout in seconds when using Cursor Mode - Until Timeout.">
<choice name="1 second" value="1" />
<choice name="2 seconds" value="2" />
<choice name="3 seconds" value="3" />
<choice name="5 seconds" value="5" />
<choice name="10 seconds" value="10" />
<choice name="15 seconds" value="15" />
<choice name="20 seconds" value="20" />
<choice name="30 seconds" value="30" />
<choice name="60 seconds" value="60" />
</feature>
<feature name="TOUCH MODE" submenu="SCREEN SETTINGS" value="melondsds_touchmode" description="Determine how the console's touch screen in emulated.">
<choice name="Joystick" value="joystick" />
<choice name="Pointer" value="pointer" />
</feature>
<feature name="DNS OVERRIDE" submenu="FIRMWARE SETTINGS" value="melondsds_dns" description="Use this to play online with custom servers that reimplement the discontinued Nintendo Wi-Fi.">
<choice name="Kaeru WFC (178.62.43.212)" value="178.62.43.212" />
<choice name="AltWFC (172.104.88.237)" value="172.104.88.237" />
<choice name="Wiimmfi (95.217.77.181)" value="95.217.77.181" />
<choice name="Force Default DNS" value="0.0.0.0" />
<choice name="Don't Override" value="default" />
</feature>
<feature name="LANGUAGE" submenu="FIRMWARE SETTINGS" value="melondsds_language" description="Overrides the language mode of the emulated console.">
<choice name="Use Host" value="auto" />
<choice name="English" value="en" />
<choice name="Japanese" value="jp" />
<choice name="French" value="fr" />
<choice name="German" value="de" />
<choice name="Italian" value="it" />
<choice name="Spanish" value="es" />
<choice name="Don't Override" value="default" />
</feature>
<feature name="FAVOURITE COLOUR" submenu="FIRMWARE SETTINGS" value="melondsds_colour" description="The theme colour of the emulated console.">
<choice name="Gray" value="0" />
<choice name="Brown" value="1" />
<choice name="Red" value="2" />
<choice name="Light Pink" value="3" />
<choice name="Orange" value="4" />
<choice name="Yellow" value="5" />
<choice name="Lime" value="6" />
<choice name="Light Green" value="7" />
<choice name="Dark Green" value="8" />
<choice name="Turquoise" value="9" />
<choice name="Light Blue" value="10" />
<choice name="Blue" value="11" />
<choice name="Dark Blue" value="12" />
<choice name="Dark Purple" value="13" />
<choice name="Light Purple" value="14" />
<choice name="Dark Pink" value="15" />
<choice name="Don't Override" value="default" />
</feature>
<feature name="BIRTH MONTH" submenu="FIRMWARE SETTINGS" value="melondsds_month" description="The month of your birthay.">
<choice name="January" value="1" />
<choice name="February" value="2" />
<choice name="March" value="3" />
<choice name="April" value="4" />
<choice name="May" value="5" />
<choice name="June" value="6" />
<choice name="July" value="7" />
<choice name="August" value="8" />
<choice name="September" value="9" />
<choice name="October" value="10" />
<choice name="November" value="11" />
<choice name="December" value="12" />
<choice name="Don't Override" value="default" />
</feature>
<feature name="BIRTH DAY" submenu="FIRMWARE SETTINGS" value="melondsds_day" description="The day within the month of your birthday.">
<choice name="1st" value="1" />
<choice name="2nd" value="2" />
<choice name="3rd" value="3" />
<choice name="4th" value="4" />
<choice name="5th" value="5" />
<choice name="6th" value="6" />
<choice name="7th" value="7" />
<choice name="8th" value="8" />
<choice name="9th" value="9" />
<choice name="10th" value="10" />
<choice name="11th" value="11" />
<choice name="12th" value="12" />
<choice name="13th" value="13" />
<choice name="14th" value="14" />
<choice name="15th" value="15" />
<choice name="16th" value="16" />
<choice name="17th" value="17" />
<choice name="18th" value="18" />
<choice name="19th" value="19" />
<choice name="20th" value="20" />
<choice name="21st" value="21" />
<choice name="22nd" value="22" />
<choice name="23rd" value="23" />
<choice name="24th" value="24" />
<choice name="25th" value="25" />
<choice name="26th" value="26" />
<choice name="27th" value="27" />
<choice name="28th" value="28" />
<choice name="29th" value="29" />
<choice name="30th" value="30" />
<choice name="31st" value="31" />
<choice name="Don't Override" value="default" />
</feature>
<feature name="WARN ABOUT UNSUPPORTED FEATURES" submenu="ON-SCREEN DISPLAY & NOTIFCATIONS" value="melondsds_show_unsupported" description="Enable to display an on-screen message if trying to use unsupported features.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<feature name="WARN ABOUT BIOS PROBLEMS" submenu="ON-SCREEN DISPLAY & NOTIFCATIONS" value="melondsds_show_bios" description="Enable to display if your BIOS haas known problems.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<feature name="SHOW SCREEN LAYOUT" submenu="ON-SCREEN DISPLAY & NOTIFCATIONS" value="melondsds_show_layout" description="Enable to show which screen layout with the configured sequence is active.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<feature name="SHOW HOST MICROPHONE STATE" submenu="ON-SCREEN DISPLAY & NOTIFCATIONS" value="melondsds_show_mic" description="Enable to show whether your device's microphone is active.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<feature name="SHOW HOST CAMERA STATE" submenu="ON-SCREEN DISPLAY & NOTIFCATIONS" value="melondsds_show_camera" description="Enable to show whether your device's camera is active.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<feature name="SHOW LID STATE" submenu="ON-SCREEN DISPLAY & NOTIFCATIONS" value="melondsds_show_lid" description="Enable to show whether the emulated screens are closed.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
</core>
<core name="dolphin" features="">
<sharedFeature value="autosave" />
<sharedFeature value="use_wheels" />
<sharedFeature value="wheel_rotation_angle" />
<sharedFeature value="wheel_deadzone" />
<sharedFeature value="wheel_midzone" />
<feature name="RENDERING RESOLUTION" value="wii_resolution" description="Enhancement. Increase the rendering resolution. Makes 3D objects clearer.">
<choice name="1x native (640x528)" value="x1 (640 x 528)" />
<choice name="2x 720p (1280x1056)" value="x2 (1280 x 1056)" />
<choice name="3x 1080p (1920x1584)" value="x3 (1920 x 1584)" />
<choice name="4x 1440p (2560x2112)" value="x4 (2560 x 2112)" />
<choice name="5x (3200x2640)" value="x5 (3200 x 2640)" />
<choice name="6x 4K (3840x3168)" value="x6 (3840 x 3168)" />
</feature>
<feature name="LANGUAGE" value="wii_language" description="Wii NAND's language setting.">
<choice name="English" value="English" />
<choice name="French" value="French" />
<choice name="German" value="German" />
<choice name="Spanish" value="Spanish" />
<choice name="Italian" value="Italian" />
<choice name="Dutch" value="Dutch" />
<choice name="Japanese" value="Japanese" />
<choice name="Simplified Chinese" value="Simplified Chinese" />
<choice name="Traditional Chinese" value="Traditional Chinese" />
<choice name="Korean" value="Korean" />
</feature>
<feature name="WIDESCREEN HACK (GLITCHY)" value="wii_widescreen_hack" description="Enhancement. Only works with a 16/9 ratio and bezels disabled.">
<choice name="Off" value="disabled" />
<choice name="On" value="enabled" />
</feature>
<feature name="UBERSHADERS" group="ADVANCED OPTIONS" value="wii_shader_mode" description="May not work well on all hardware. Hybrid is preferred, where supported.">
<choice name="No Ubershaders" value="sync" />
<choice name="Exclusive Ubershaders" value="sync UberShaders" />
<choice name="Hybrid Ubershaders" value="a-sync UberShaders" />
<choice name="Skip Drawing" value="a-sync Skip Rendering" />
</feature>
<feature name="ANISOTROPIC FILTERING" group="ADVANCED OPTIONS" value="wii_anisotropic" description="Improves clarity of distant textures.">
<choice name="Off" value="1x" />
<choice name="2x" value="2x" />
<choice name="4x" value="4x" />
<choice name="8x" value="8x" />
<choice name="16x" value="16x" />
</feature>
<feature name="OSD MESSAGES" group="ADVANCED OPTIONS" value="wii_osd" description="Enables or disable on screen messages.">
<choice name="Disabled" value="disabled" />
<choice name="Enabled" value="enabled" />
</feature>
<systems>
<system name="wii" features="" >
<feature name="WII TV MODE" value="wii_widescreen" description="Wii NAND's aspect ratio setting. Most games support both ratios natively.">
<choice name="16:9" value="enabled" />
<choice name="4:3" value="disabled" />
</feature>
<feature name="CONTROLLER 1 TYPE" value="controller1_wii" description="Emulate a Wiimote Sideway with L2 for Shake and Nunchuk on R-stick.">
<choice name="WiiMote" value="1" />
<choice name="WiiMote Sideways" value="513" />
<choice name="WiiMote + Nunchuk" value="769" />
<choice name="WiiMote + Classic Controller" value="1025" />
<choice name="WiiMote + Classic Controller Pro" value="1281" />
<choice name="Real Wiimote" value="1536" />
<choice name="GameCube Controller" value="1281" />
</feature>
<feature name="CONTROLLER 2 TYPE" value="controller2_wii" description="Emulate a Wiimote Sideway with L2 for Shake and Nunchuk on R-stick.">
<choice name="WiiMote" value="1" />
<choice name="WiiMote Sideways" value="513" />
<choice name="WiiMote + Nunchuk" value="769" />
<choice name="WiiMote + Classic Controller" value="1025" />
<choice name="WiiMote + Classic Controller Pro" value="1281" />
<choice name="Real Wiimote" value="1536" />
<choice name="GameCube Controller" value="1281" />
</feature>
<feature name="CONTROLLER 3 TYPE" value="controller3_wii" description="Emulate a Wiimote Sideway with L2 for Shake and Nunchuk on R-stick.">
<choice name="WiiMote" value="1" />
<choice name="WiiMote Sideways" value="513" />
<choice name="WiiMote + Nunchuk" value="769" />
<choice name="WiiMote + Classic Controller" value="1025" />
<choice name="WiiMote + Classic Controller Pro" value="1281" />
<choice name="Real Wiimote" value="1536" />
<choice name="GameCube Controller" value="1281" />
</feature>
<feature name="CONTROLLER 4 TYPE" value="controller4_wii" description="Emulate a Wiimote Sideway with L2 for Shake and Nunchuk on R-stick.">
<choice name="WiiMote" value="1" />
<choice name="WiiMote Sideways" value="513" />
<choice name="WiiMote + Nunchuk" value="769" />
<choice name="WiiMote + Classic Controller" value="1025" />
<choice name="WiiMote + Classic Controller Pro" value="1281" />
<choice name="Real Wiimote" value="1536" />
<choice name="GameCube Controller" value="1281" />
</feature>
</system>
</systems>
</core>
<core name="dosbox" features="padtokeyboard">
<feature name="CPU TIMING MODE (FPS)" group="ADVANCED OPTIONS" value="core_timing" description="Skip frames to improve performance, at the cost of choppy motion.">
<choice name="internal (fixed 60fps)" value="internal_fixed" />
<choice name="internal (variable fps)" value="internal_variable" />
<choice name="external (variable fps)" value="external" />
</feature>
<feature name="VIDEO FILTER" value="filter" description="Apply a post-processing effect.">
<choice name="Off" value="none" />
<choice name="normal2x" value="normal2x" />
<choice name="normal3x" value="normal3x" />
<choice name="advmame2x" value="advmame2x" />
<choice name="advmame3x" value="advmame3x" />
<choice name="advinterp2x" value="advinterp2x" />
<choice name="advinterp3x" value="advinterp3x" />
<choice name="hq2x" value="hq2x" />
<choice name="hq3x" value="hq3x" />
<choice name="2xai" value="2xai" />
<choice name="super2xai" value="super2xai" />
<choice name="supereagle" value="supereagle" />
<choice name="tv2x" value="tv2x" />
<choice name="tv3x" value="tv3x" />
<choice name="rgb2x" value="rgb2x" />
<choice name="rgb3x" value="rgb3x" />
<choice name="scan2x" value="scan2x" />
<choice name="scan3x" value="scan3x" />
</feature>
<feature name="CONTROLLER 1 TYPE" value="controller1_dosbox" description="">
<choice name="Gamepad (D-pad, 2 Buttons)" value="1" />
<choice name="Keyboard + Mouse" value="3" />
<choice name="Joystick (Analog, 2 Buttons)" value="517" />
</feature>
<feature name="CONTROLLER 2 TYPE" value="controller2_dosbox" description="Select Keyboard, Joystick or Gamepad mode">
<choice name="Gamepad (D-pad, 2 Buttons)" value="1" />
<choice name="Keyboard + Mouse" value="3" />
<choice name="Joystick (Analog, 2 Buttons)" value="517" />
</feature>
</core>
<core name="dosbox_pure" features="padtokeyboard">
<feature name="CPU TYPE" group="ADVANCED OPTIONS" value="pure_cpu_type" description="Select which Intel CPU to emulate.">
<choice name="Autodetect (Compatible)" value="automatic" />
<choice name="386" value="386" />
<choice name="386 (slow)" value="386_slow" />
<choice name="386 (prefetch)" value="386_prefetch" />
<choice name="486 (slow)" value="486_slow" />
<choice name="Pentium (slow)" value="pentium_slow" />
</feature>
<feature name="CPU CORE METHOD" group="ADVANCED OPTIONS" value="pure_cpu_core" description="Affects efficiency/stability.">
<choice name="Optimized (auto)" value="automatic" />
<choice name="Dynamic (fast)" value="dynamic" />
<choice name="Normal (interpreter)" value="normal" />
<choice name="Simple (interpreter for old real-mode games)" value="simple" />
</feature>
<feature name="EMULATED CPU PERFORMANCE" value="pure_cycles" description="Manually set cycles per second. Use with caution.">
<choice name="Autodetect (Compatible)" value="automatic" />
<choice name="MAX (as many as possible)" value="max" />
<choice name="8086/8088, 4.77MHz (315 cps)" value="315" />
<choice name="286, 6MHz (1320 cps)" value="1320" />
<choice name="286, 12.5MHz (2750 cps)" value="2750" />
<choice name="386, 20MHz (4720 cps)" value="4720" />
<choice name="386DX, 33MHz (7800 cps)" value="7800" />
<choice name="486DX, 33MHz (13400 cps)" value="13400" />
<choice name="486DX2, 66MHz (26800 cps)" value="26800" />
<choice name="Pentium, 100MHz (77000 cps)" value="77000" />
<choice name="Pentium II, 300MHz (200000 cps)" value="200000" />
<choice name="Pentium III, 600MHz (500000 cps)" value="500000" />
<choice name="AMD Athlon, 1.2GHz (1000000 cps)" value="1000000" />
</feature>
<feature name="EMULATED RAM SIZE" value="pure_memory_size" description="">
<choice name="No EMS/XMS" value="none" />
<choice name="4MB" value="4" />
<choice name="8MB" value="8" />
<choice name="16MB" value="16" />
<choice name="24MB" value="24" />
<choice name="32MB" value="32" />
<choice name="48MB" value="48" />
<choice name="64MB" value="64" />
<choice name="96MB" value="96" />
<choice name="128MB" value="128" />
<choice name="224MB" value="224" />
</feature>
<feature name="GRAPHICS CHIP TYPE" value="pure_machine" description="The emulated graphics card.">
<choice name="SVGA" value="svga" />
<choice name="VGA" value="vga" />
<choice name="EGA" value="ega" />
<choice name="CGA" value="cga" />
<choice name="Tandy" value="tandy" />
<choice name="Hercules" value="hercules" />
<choice name="PCjr" value="pcjr" />
</feature>
<feature name="PHYSICAL KEYBOARD LAYOUT" value="pure_keyboard_layout" description="Does not affect the on-screen keyboard.">
<choice name="US" value="us" />
<choice name="UK" value="uk" />
<choice name="Brazil" value="br" />
<choice name="Croatia" value="hr" />
<choice name="Czech Republic" value="cz243" />
<choice name="Denmark" value="dk" />
<choice name="Finland" value="su" />
<choice name="France" value="fr" />
<choice name="Germany" value="gm" />
<choice name="Greece" value="gr" />
<choice name="Hungary" value="hu" />
<choice name="Iceland" value="is161" />
<choice name="Italy" value="it" />
<choice name="Netherlands" value="nl" />
<choice name="Norway" value="no" />
<choice name="Poland" value="pl" />
<choice name="Portugal" value="po" />
<choice name="Russia" value="ru" />
<choice name="Slovakia" value="sk" />
<choice name="Slovenia" value="si" />
<choice name="Spain" value="sp" />
<choice name="Sweden" value="sv" />
<choice name="Switzerland (German)" value="sg" />
<choice name="Switzerland (French)" value="sf" />
<choice name="Turkey" value="tr" />
</feature>
<feature name="SAVESTATE/REWIND" value="pure_savestate" description="Rewind can be CPU heavy.">
<choice name="On" value="True" />
<choice name="On with rewind support" value="rewind" />
<choice name="Off" value="disabled" />
</feature>
<feature name="GAMEPAD AUTOMATIC MAPPING" value="pure_auto_mapping" description="Apply a joy2key profile for the current game.">
<choice name="On" value="true" />
<choice name="On with game detection message" value="notify" />
<choice name="Off" value="false" />
</feature>
<feature name="ANALOG JOYSTICK DEADZONE" group="ADVANCED OPTIONS" value="pure_joystick_analog_deadzone" description="Set the deadzone of the joystick analog sticks.">