-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathes_features.yml
12500 lines (12394 loc) · 522 KB
/
es_features.yml
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
# this file describes which features each emulator/core supports
# the aim is to display in es only the available options
shared:
cfeatures:
powermode:
prompt: POWER MODE
description: Adjust the cpu power profile while in-game.
choices:
"High Performance": highperformance
"Balanced": balanced
"Power Saver": powersaver
tdp:
prompt: RYZEN THERMAL DESIGN POWER
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.
choices:
"10%": 10
"20%": 20
"30%": 30
"40%": 40
"50%": 50
"60%": 60
"70%": 70
"80%": 80
"90%": 90
"100%": 100
"105% (Use caution": 105
"110% (Use caution)": 110
"115% (Use caution)": 115
"120% (Are you crazy?)": 120
"125% (Yes, you're crazy)": 125
"130% (Nope, you're just insane!)": 130
videomode:
prompt: VIDEO MODE
description: Set the display's resolution. Does not affect the rendering resolution.
preset: videomodes
ratio:
prompt: GAME ASPECT RATIO
description: Force the game to render in this aspect ratio. Not all systems support all ratios.
choices:
"4/3": "4/3"
"16/9": "16/9"
"Full": "full"
"16/10": "16/10"
"16/15": "16/15"
"21/9": "21/9"
"1/1": "1/1"
"2/1": "2/1"
"3/2": "3/2"
"3/4": "3/4"
"4/1": "4/1"
"9/16": "9/16"
"5/4": "5/4"
"6/5": "6/5"
"7/9": "7/9"
"8/3": "8/3"
"8/7": "8/7"
"19/12": "19/12"
"19/14": "19/14"
"30/17": "30/17"
"32/9": "32/9"
"Config": "config"
"Square pixel": "squarepixel"
"Core provided": "core"
"Custom": "custom"
rewind:
prompt: REWIND
description: Store past states to rewind to in realtime, if the core supports it.
choices:
"On": 1
"Off": 0
autosave:
prompt: AUTO SAVE/LOAD ON GAME LAUNCH
description: Load latest save state on game launch and save state when exiting game.
choices:
"On": 1
"Off": 0
shaderset:
prompt: SHADER SET
submenu: GAME RENDERING & SHADERS
preset: shaderset
smooth:
prompt: SMOOTH GAMES (BILINEAR FILTERING)
description: Disabled if using a shader set or the output display matches the game's resolution.
submenu: GAME RENDERING & SHADERS
choices:
"On": 1
"Off": 0
integerscale:
prompt: INTEGER SCALING (PIXEL PERFECT)
description: Only increase the image size in integer multiples.
submenu: GAME RENDERING & SHADERS
choices:
"On": 1
"Off": 0
bezel:
prompt: DECORATION SET
submenu: DECORATIONS
preset: bezel
bezel_stretch:
prompt: STRETCH BEZELS (4K & ULTRAWIDE)
submenu: DECORATIONS
choices:
"On": 1
"Off": 0
hud:
archs_exclude: [s905 bcm2835 bcm2836]
prompt: HEADS UP DISPLAY
description: Show context-sensitive info over the game.
submenu: DECORATIONS
choices:
"None": none
"Game info/art": game
"Performance": perf
"Custom": custom
hud_corner:
archs_exclude: [s905 bcm2835 bcm2836]
prompt: HEADS UP DISPLAY CORNER
submenu: DECORATIONS
choices:
"TOP LEFT (NW)": "NW"
"TOP RIGHT (NE)": "NE"
"BOTTOM RIGHT (SE)": "SE"
"BOTTOM LEFT (SW)": "SW"
bezel.tattoo:
prompt: SHOW TATTOO OVER BEZEL
submenu: DECORATIONS
description: Show an image overlaid on top of the bezel.
choices:
"NO": "0"
"SYSTEM CONTROLLERS": system
"CUSTOM IMAGE": custom
bezel.tattoo_corner:
prompt: TATTOO CORNER
submenu: DECORATIONS
choices:
"TOP LEFT (NW)": "NW"
"TOP RIGHT (NE)": "NE"
"BOTTOM RIGHT (SE)": "SE"
"BOTTOM LEFT (SW)": "SW"
bezel.tattoo_file:
prompt: "CUSTOM .PNG IMAGE PATH"
submenu: DECORATIONS
preset: image
bezel.resize_tattoo:
prompt: RESIZE TATTOO
description: Shrink/expand tattoo to fit within the bezel's border.
submenu: DECORATIONS
preset: switchon
ai_service_enabled:
prompt: ENABLE AI TRANSLATION SERVICE
description: During gameplay, press Hotkey + R1 to translate on-screen text. Only on libretro cores.
submenu: AI GAME TRANSLATION
preset: switch
ai_target_lang:
prompt: TARGET LANGUAGE
description: The language to translate into.
submenu: AI GAME TRANSLATION
choices:
"ENGLISH": "En"
"FRANÇAIS": "Fr"
"PORTUGUÊS": "Pt"
"DEUTSCH": "De"
"GREEK": "El"
"ESPAÑOL": "Es"
"CZECH": "Cs"
"DANISH": "Da"
"CROATIAN": "Hr"
"HUNGARIAN": "Hu"
"ITALIANO": "It"
"JAPANESE": "Ja"
"KOREAN": "Ko"
"DUTCH": "Nl"
"NORWEGIAN": "Nn"
"POLISH": "Po"
"ROMANIAN": "Ro"
"РУССКИЙ": "Ru"
"SVENSKA": "Sv"
"TÜRKÇE": "Tr"
"简体中文": "Zh"
ai_service_url:
prompt: AI TRANSLATION SERVICE URL
description: If nothing is specified, will use ZTranslate by default.
submenu: AI GAME TRANSLATION
preset: input
ai_service_pause:
prompt: PAUSE ON TRANSLATED SCREEN
submenu: AI GAME TRANSLATION
preset: switch
runahead:
submenu: LATENCY REDUCTION
prompt: RUN-AHEAD FRAMES
description: Enables run-ahead. Doubles CPU requirements. High numbers can result in visible jitter.
choices:
"None": 0
"1": 1
"2": 2
"3": 3
"4": 4
"5": 5
"6": 6
secondinstance:
submenu: LATENCY REDUCTION
prompt: USE SECOND INSTANCE FOR RUN-AHEAD
description: Can prevent audio skips on button presses when using run-ahead.
choices:
"On": 1
"Off": 0
video_frame_delay_auto:
submenu: LATENCY REDUCTION
prompt: AUTOMATIC FRAME DELAY
description: Automatically decrease frame delay temporarily to prevent frame drops. Can introduce stuttering.
choices:
"On": 1
"Off": 0
vrr_runloop_enable:
submenu: LATENCY REDUCTION
prompt: VARIABLE REFRESH RATE
description: Don't deviate from core requested timing. G-Sync, FreeSync, HDMI 2.1 VRR.
choices:
"On": 1
"Off": 0
video_threaded:
submenu: LATENCY REDUCTION
prompt: THREADED VIDEO
description: Improves performance at the cost of latency and more video stuttering.
choices:
"On": 1
"Off": 0
use_guns:
group: LIGHT GUN
prompt: USE LIGHT GUNS
description: Use light guns instead of pads if light guns are connected.
choices:
"On": 1
"Off": 0
use_wheels:
group: WHEELS
prompt: USE WHEELS
description: Use wheels instead of pads if wheels are connected.
choices:
"On": 1
"Off": 0
wheel_rotation_angle:
group: WHEELS
prompt: WHEEL ROTATION
description: Maximum wheel rotation from left to right (in degrees)
choices:
"150": 150
"180": 180
"200": 200
"240": 240
"270": 270
"360": 360
"720": 720
"900": 900
"1080": 1080
wheel_deadzone:
group: WHEELS
prompt: WHEEL DEADZONE
description: Zone for which the game doesn't react to the wheel (in degrees)
choices:
"5": 5
"10": 10
"15": 15
"20": 20
"25": 25
"30": 30
"35": 35
"40": 40
"45": 45
"50": 50
wheel_midzone:
group: WHEELS
prompt: WHEEL MIDZONE
description: Reserve a non dead zone at the center of the wheel to go straight ahead (in degrees)
choices:
"1": 1
"2": 2
"3": 3
"4": 4
"5": 5
"6": 6
"7": 7
"8": 8
"9": 9
"10": 10
rumble_gain:
prompt: RUMBLE LEVEL
description: For emulators and controllers supporting force feedback.
choices:
"disabled": 1
"20%": 20
"40%": 40
"60%": 60
"80%": 80
"100%": 100
audio_volume:
prompt: AUDIO VOLUME GAIN
description: Set game audio level gain in dB.
choices:
"-12": -12.000000
"-10": -10.000000
"-8": -8.000000
"-6": -6.000000
"-4": -4.000000
"-2": -2.000000
"0 (No gain)": 0
"+2": 2.000000
"+4": 4.000000
"+6": 6.000000
"+8": 8.000000
"+10": 10.000000
"+12": 12.000000
bordersmode:
group: LIGHT GUN
prompt: BORDER MODE
description: Show/Hide guns borders for specific systems
choices:
"normal": "normal"
"hidden": "hidden"
global:
shared: [powermode, tdp, videomode, ratio, shaderset, smooth, integerscale, bezel, bezel_stretch, hud, hud_corner, bezel.tattoo, bezel.tattoo_corner, bezel.tattoo_file, bezel.resize_tattoo, ai_service_enabled, ai_target_lang, ai_service_url, ai_service_pause, rewind, runahead, secondinstance, video_frame_delay_auto, vrr_runloop_enable, video_threaded, rumble_gain]
libretro:
shared: [powermode, tdp, videomode, ratio, shaderset, smooth, integerscale, bezel, bezel_stretch, hud, hud_corner, bezel.tattoo, bezel.tattoo_corner, bezel.tattoo_file, bezel.resize_tattoo, ai_service_enabled, ai_target_lang, ai_service_url, ai_service_pause, runahead, secondinstance, video_frame_delay_auto, vrr_runloop_enable, video_threaded, rumble_gain, audio_volume, bordersmode]
cfeatures:
gfxbackend:
archs_include: [x86, x86_64, bcm2711, bcm2712, rk3326]
prompt: GRAPHICS API
description: Choose which graphics API library to use. Vulkan may not work for every core.
choices:
"OpenGL": gl
"GLCore": glcore
"Vulkan": vulkan
audio_driver:
group: ADVANCED OPTIONS
prompt: AUDIO DRIVER
description: Changing driver can improve audio performance and reduce distortion. Alsathread is recommended for low-end systems.
choices:
"ALSA": alsa
"ALSAThread": alsathread
"TinyALSA": tinyalsa
"SDL2": sdl2
"Pulse (Default)": pulse
audio_latency:
group: ADVANCED OPTIONS
prompt: AUDIO LATENCY
description: In milliseconds. Can reduce crackling/cutting out.
choices:
"256": 256
"192": 192
"128": 128
"64": 64
"32": 32
"16": 16
"8": 8
video_allow_rotate:
group: ADVANCED OPTIONS
prompt: ALLOW ROTATION
description: Allow cores to set rotation.
choices:
"On": "true"
"Off": "false"
lightgun_map:
group: ADVANCED OPTIONS
prompt: CONTROLLER TO LIGHT GUN
description: Map controller inputs to light gun inputs.
choices:
"On": "true"
"Off": "false"
cores:
'81':
features: [netplay, padtokeyboard]
shared: [rewind, autosave]
cfeatures:
81_chroma_81:
group: ADVANCED OPTIONS
prompt: COLORIZATION
description: Emulate Chroma 81 interface (colorization).
choices:
"Autodetect": automatic
"Off": disabled
"On (forced)": enabled
81_highres:
group: ADVANCED OPTIONS
prompt: WRX HIGH RESOLUTION
description: Required for some homebrew.
choices:
"Autodetect": automatic
"Off": none
"On (forced)": WRX
arduous:
features: [cheevos]
atari800:
features: [padtokeyboard]
systems:
atari800:
cfeatures:
atari800_system:
group: ADVANCED OPTIONS
prompt: ATARI SYSTEM
choices:
"400/600XL/800 (48K) (OS B)": 400/800 (OS B)
"800XL/1200XL/XEGS (64K)": 800XL (64K)
"130XE (128K)": 130XE (128K)
"Modern XL/XE (320K CS)": Modern XL/XE(320K CS)
"Modern XL/XE (576K)": Modern XL/XE(576K)
"Modern XL/XE (1088K)": Modern XL/XE(1088K)
atari800_ntscpal:
prompt: VIDEO FORMAT STANDARD
choices:
"NTSC 240x480px 60Hz": NTSC
"PAL 288x576px 50Hz": PAL
atari800_sioaccel:
group: ADVANCED OPTIONS
prompt: SIO ACCELERATION
description: Speeds up file loading. Some games won't load with this.
choices:
"Off": disabled
"On": enabled
atari800_artifacting:
group: ADVANCED OPTIONS
prompt: HI-RES ARTIFACTING
description: Emulate NTSC quirks to show more colors in hi-res mode.
choices:
"Off": disabled
"On": enabled
atari800_resolution:
prompt: INTERNAL RESOLUTION
description: Use an alternate resolution. Some games need this.
choices:
"336x240": 336x240
"320x240": 320x240
"384x240": 384x240
"384x272": 384x272
"384x288": 384x288
"400x300": 400x300
atari800_internalbasic:
prompt: INTERNAL BASIC INTERPRETER
description: Enable the BASIC interpreter. Some games need this.
choices:
"Off": disabled
"On": enabled
atari5200:
cfeatures:
atari800_opt2:
group: ADVANCED OPTIONS
prompt: JOYSTICK HACK (FOR ROBOTRON 2084)
description: Treats the right analog stick as the second joystick.
choices:
"Off": disabled
"On": enabled
beetle-saturn:
features: [netplay, cheevos]
shared: [autosave, use_guns, use_wheels, wheel_rotation_angle, wheel_deadzone, wheel_midzone]
cfeatures:
beetle-saturn_crosshair:
group: LIGHT GUN
prompt: LIGHT GUN CROSSHAIR
choices:
"Cross": "Cross"
"Dot": "Dot"
"Disabled": "Off"
beetle-saturn-autowidescreen:
prompt: AUTO WIDESCREEN
description: Automatically sets aspect ratio to 16/9 for games that natively support it. 2D elements like HUD/UI may be stretched.
choices:
"Off": "False"
"On": "True"
controller1_saturn:
prompt: CONTROLLER 1 TYPE
description: Not all games support 3D pad.
choices:
#"None": 0
"Saturn Pad": 1
"Saturn 3D Pad": 5
controller2_saturn:
prompt: CONTROLLER 2 TYPE
description: Not all games support 3D pad.
choices:
#"None": 0
"Saturn Pad": 1
"Saturn 3D Pad": 5
fmsx:
features: [netplay, cheevos]
shared: [rewind, autosave]
bluemsx:
features: [padtokeyboard, cheevos]
shared: [rewind, autosave]
cfeatures:
bluemsx_overscan:
prompt: ZOOM (HIDE BORDERS)
description: Hides borders on many games. Some games used the borders.
choices:
"Off": disabled
"On": enabled
"MSX2": MSX2
bluemsx_nospritelimits:
prompt: REDUCE SPRITE FLICKERING
description: Enhancement. Remove the four sprites per line limit.
choices:
"Off": OFF
"On": ON
bsnes:
features: [netplay, cheevos]
shared: [rewind, autosave, use_guns]
cfeatures:
bsnes_video_filter:
prompt: VIDEO FILTERS
description: Apply a video filter to mimic various NTSC TV signals.
choices:
"Off": "None"
"NTSC (RF)": "NTSC (RF)"
"NTSC (RGB)": "NTSC (RGB)"
"NTSC (S-Video)": "NTSC (S-Video)"
"NTSC (Composite)": "NTSC (Composite)"
bsnes_hd:
features: [netplay, cheevos]
shared: [rewind, autosave]
cap32:
features: [netplay, cheevos, padtokeyboard]
shared: [rewind, autosave]
cfeatures:
cap32_model:
prompt: CPC MODEL
choices:
"464": 464
"6128": 6128
"6128+": 6128+
cap32_ram:
group: ADVANCED OPTIONS
prompt: EMULATED RAM SIZE
choices:
"64KB": 64
"128KB": 128
"192+KB": 192
"512KB": 512
"576+KB": 576
cap32_colour:
prompt: COLOUR DEPTH
description: Choose the emulated colour depth.
choices:
"16 bit": 16bit
"24 bit (Default)": 24bit
cap32_language:
prompt: LANGUAGE
description: Change the game's language.
choices:
"English (Default)": english
"Spanish": spanish
"French": french
mesen-s:
features: [netplay, padtokeyboard]
shared: [rewind, autosave, use_guns]
cfeatures:
mesen-s_ntsc_filter:
group: ADVANCED OPTIONS
prompt: BLARGG NTSC FILTER
description: Core-powered video filter.
choices:
"Disabled": disabled
"Composite (Blargg)": Composite (Blargg)
"S-Video (Blargg)": S-Video (Blargg)
"RGB (Blargg)": RGB (Blargg)
"Monochrome (Blargg)": Monochrome (Blargg)
mesen-s_blend_high_res:
group: ADVANCED OPTIONS
prompt: HIGH-RES BLENDING
description: Blur high-res mode, allowing for better transparency effects.
choices:
"On": enabled
"Off": disabled
mesen-s_cubic_interpolation:
group: ADVANCED OPTIONS
prompt: CUBIC AUDIO INTERPOLATION
description: Enhancement. Swap from SNES' guassian interpolation to cubic. Improves sound quality.
choices:
"On": enabled
"Off": disabled
mesen-s_gbmodel:
group: ADVANCED OPTIONS
prompt: GAME BOY MODE
description: Change behaviour when emulating GB games. Auto uses SGB for GB and GBC for GBC.
choices:
"Game Boy": Game Boy
"Game Boy Color": Game Boy Color
"Super Game Boy": Super Game Boy
mesen-s_sgb2:
group: ADVANCED OPTIONS
prompt: SUPER GAME BOY 2
description: Emulate the Super Game Boy 2 for SGB. Runs games at the correct speed.
choices:
"On": enabled
"Off": disabled
mesen-s_overclock:
group: ADVANCED OPTIONS
prompt: OVERCLOCK (UNSTABLE)
description: Enhancement. Reduces system slowdown. Causes issues in some games.
choices:
"None": None
"Low": Low
"Medium": Medium
"High": High
"Very High": Very High
mesen-s_overclock_type:
group: ADVANCED OPTIONS
prompt: OVERCLOCK TYPE
description: Prefer "Before NMI", change to After NMI only if needed by the game.
choices:
"Before NMI": Before NMI
"After NMI": After NMI
mesen-s_superfx_overclock:
group: ADVANCED OPTIONS
prompt: SUPER FX OVERCLOCK
description: Enhancement. Reduces slowdown in mode 7 games.
choices:
"100%": 100%
"200%": 200%
"300%": 300%
"400%": 400%
"500%": 500%
"1000%": 1000%
mesen:
features: [netplay, padtokeyboard]
shared: [rewind, autosave]
cfeatures:
mesen_region:
prompt: CONSOLE REGION
description: Dendy is a popular Russian clone with unique characteristics.
choices:
"NTSC": NTSC
"PAL": PAL
"Dendy": Dendy
mesen_screenrotation:
prompt: DISPLAY ROTATION
description: Rotate the screen, useful for certain vertical gameplay homebrews.
choices:
"None": None
"90 degrees": 90 degrees
"180 degrees": 180 degrees
"270 degrees": 270 degrees
mesen_ntsc_filter:
prompt: NTSC FILTER
description: Core-powered video filter. Bisqwit filters are CPU heavy.
choices:
"Disabled": Disabled
"Composite (Blargg)": Composite (Blargg)
"S-Video (Blargg)": S-Video (Blargg)
"RGB (Blargg)": RGB (Blargg)
"Monochrome (Blargg)": Monochrome (Blargg)
"Bisqwit 2x": Bisqwit 2x
"Bisqwit 4x": Bisqwit 4x
"Bisqwit 8x": Bisqwit 8x
mesen_nospritelimit:
prompt: REDUCE SPRITE FLICKERING
description: Enhancement. Remove the eight sprite per line limit.
choices:
"Off": Off
"On": On
mesen_palette:
prompt: COLOR PALETTE
choices:
"Default": Default
"Composite Direct (FirebrandX)": Composite Direct (by FirebrandX)
"Nes Classic": Nes Classic
"Nestopia (RGB)": Nestopia (RGB)
"Original Hardware (FirebrandX)": Original Hardware (by FirebrandX)
"PVM Style (FirebrandX)": PVM Style (by FirebrandX)
"Sony CXA2025AS": Sony CXA2025AS
"Unsaturated v6 (FirebrandX)": Unsaturated v6 (by FirebrandX)
"YUV v3 (Firebrand)": YUV v3 (by FirebrandX)
"Custom": Custom
mesen_hdpacks:
prompt: LOAD CUSTOM TEXTURES
description: For use with HD texture packs.
choices:
"Off": Off
"On": On
mesen_fdsautoinsertdisk:
prompt: (FDS) AUTOMATICALLY LOAD DISK SIDE A
description: Avoids having to manually load side A every time.
choices:
"Off": Off
"On": On
mesen_fdsfastforwardload:
group: ADVANCED OPTIONS
prompt: (FDS) FAST FORWARD DISK LOADING
description: Reduce load time at the cost of accuracy.
choices:
"Off": Off
"On": On
mesen_ramstate:
group: ADVANCED OPTIONS
prompt: DEFAULT POWER ON RAM STATE
description: Useful for speedruns/glitches.
choices:
"All 0s (Default)": All 0s (Default)
"All 1s": All 1s
"Random Values": Random Values
mesen_overclock:
group: ADVANCED OPTIONS
prompt: OVERCLOCK (UNSTABLE)
description: Enhancement. Reduces system slowdown. Causes issues in some games.
choices:
"None": None
"Low": Low
"Medium": Medium
"High": High
"Very High": Very High
mesen_overclock_type:
group: ADVANCED OPTIONS
prompt: OVERCLOCK TYPE
description: Prefer "Before NMI", change to After NMI only if needed by the game.
choices:
"Before NMI": Before NMI (Recommended)
"After NMI": After NMI
citra:
shared: [rewind, autosave]
daphne:
features: [padtokeyboard]
desmume:
features: [netplay, cheevos]
shared: [rewind, autosave]
cfeatures:
internal_resolution_desmume:
prompt: RENDERING RESOLUTION
description: Enhancement. Increase the rendering resolution. Makes 3D objects clearer.
choices:
"1x (256x192)": 256x192
"2x (512x384)": 512x384
"3x (768x576)": 768x576
"4x (1024x768)": 1024x768
"5x (1280x960)": 1280x960
"6x (1536x1152)": 1536x1152
"7x (1792x1344)": 1792x1344
"8x (2048x1536)": 2048x1536
"9x (2304x1728)": 2304x1728
"10x (2560x1920)": 2560x1920
texture_scaling:
group: ADVANCED OPTIONS
prompt: TEXTURE UPSCALING (XBRZ)
description: Enhancement. Upscales textures on 3D objects.
choices:
"Off": 1
"2x": 2
"4x": 4
texture_smoothing:
prompt: TEXTURE SMOOTHING
description: Smooths out textures on 3D objects.
choices:
"Off": disabled
"On": enabled
multisampling:
group: ADVANCED OPTIONS
prompt: ANTI-ALIASING (MSAA)
description: Enhancement. Smooth out jagged edges on 3D object polygons.
choices:
"Off": disabled
"2x": 2
"4x": 4
"8x": 8
"16x": 16
"32x": 32
screens_layout:
prompt: SCREEN LAYOUT
description: Arrange the dual screen layout.
choices:
"top/bottom": top/bottom
"bottom/top": bottom/top
"left/right": left/right
"right/left": right/left
"top only": top only
"bottom only": bottom only
"quick switch": quick switch
"hybrid/top": hybrid/top
"hybrid/bottom": hybrid/bottom
frameskip_desmume:
prompt: FRAMESKIP
description: Skip frames to improve performance, at the cost of choppy motion.
choices:
"Off": 0
"1": 1
"2": 2
"3": 3
"4": 4
"5": 5
"6": 6
"7": 7
"8": 8
"9": 9
melonds:
features: [cheevos]
shared: [autosave]
cfeatures:
melonds_console_mode:
prompt: NDS VERSION
decription: Choose the NDS handheld version
choices:
"DS (Default)": DS
"DSi": DSi
melonds_boot_directly:
prompt: SKIP DS SYSTEM MENU
description: Disable to access the system's settings, like time and language.
choices:
"Off": disabled
"On": enabled
melonds_use_fw_settings:
prompt: USE FIRMWARE SETTINGS
description: Use language and username from the NDS Firmware
choices:
"ON": enable
"OFF (Default)": disable
melonds_language:
prompt: LANGUAGE
description: Select language will be used if 'Use Firmware Settings' is disabled or if firmware file was not found.
choices:
"English (Default)": English
"French": French
"German": German
"Italian": Italian
"Spanish": Spanish
"Japanese": Japanese
melonds_screen_layout:
prompt: SCREEN LAYOUT
description: Arrange the dual screen layout.
choices:
"top/bottom": Top/Bottom
"bottom/top": Bottom/Top
"left/right": Left/Right
"right/left": Right/Left
"top only": Top Only
"bottom only": Bottom Only
"hybrid top ratio 2": Hybrid Top-Ratio2
"hybrid top ratio 3": Hybrid Top-Ratio3
"hybrid bottom ratio 2": Hybrid Bottom-Ratio2
"hybrid bottom ratio 3": Hybrid Bottom-Ratio3
melonds_touch_mode:
prompt: TOUCH SCREEN MODE
description: Select the input type to navigate the touch screen
choices:
"None": Disabled
"Mouse": Mouse
"Touch Screen": Touch
"Right Stick": Joystick
melondsds:
features: [cheevos]
shared: [autosave]
cfeatures:
melondsds_console_mode:
prompt: NDS VERSION
decription: Choose the NDS handheld version
choices:
"DS": DS
"DSi (Experiemental)": DSi
melondsds_render_mode:
submenu: VIDEO SETTINGS
prompt: RENDERER MODE
description: Software mode is faster and more accurate, while OpenGL mode supports scaling 3D graphics.
choices:
"Software": "software"
"OpenGL (Overwrites Libretro API settings)": "opengl"
melondsds_resolution:
submenu: VIDEO SETTINGS
prompt: INTERNAL RESOLUTION
description: Degree in which 3D graphics are scaled up. OpenGL renderer only.
choices:
"1x native (256 x 192)": 1
"2x native (512 x 384)": 2
"3x native (768 x 576)": 3
"4x native (1024 x 768)": 4
"5x native (1280 x 960)": 5
"6x native (1536 x 1152)": 6
"7x native (1792 x 1344)": 7
"8x native (2048 x 1536)": 8
melondsds_poygon:
submenu: VIDEO SETTINGS
prompt: IMPROVED POLYGON SPLITTING
description: Enable this if your game's 3D modles are not rendered correctly. OpenGL renderer only.
choices:
"Disabled": "disabled"
"Enabled": "enabled"
melondsds_filtering:
submenu: VIDEO SETTINGS
prompt: SCREEN FILTERING
description: Affects how the emulated screens are scaled. OpenGL renderer only.
choices:
"Nearest": "nearest"
"Linear": "linear"
melondsds_cursor:
submenu: SCREEN SETTINGS
prompt: CURSOR MODE
description: Determines how the cursor should apprear on the botton screen.
choices:
"Never": "never"
"While Touching": "touching"
"Until Timeout": "timeout"
"Always": "always"
melondsds_cursor_timeout:
submenu: SCREEN SETTINGS
prompt: CURSOR TIMEOUT
description: Cursor timeout in seconds when using Cursor Mode - Until Timeout.
choices:
"1 second": 1
"2 seconds": 2
"3 seconds": 3
"5 seconds": 5
"10 seconds": 10
"15 seconds": 15
"20 seconds": 20
"30 seconds": 30
"60 seconds": 60
melondsds_touchmode:
submenu: SCREEN SETTINGS
prompt: TOUCH MODE
description: Determine how the console's touch screen in emulated.
choices:
"Joystick": "joystick"
"Pointer": "pointer"
melondsds_dns:
submenu: FIRMWARE SETTINGS
prompt: DNS OVERRIDE
description: Use this to play online with custom servers that reimplement the discontinued Nintendo Wi-Fi.
choices:
"Kaeru WFC (178.62.43.212)": "178.62.43.212"
"AltWFC (172.104.88.237)": "172.104.88.237"
"Wiimmfi (95.217.77.181)": "95.217.77.181"
"Force Default DNS": "0.0.0.0"
"Don't Override": "default"
melondsds_language:
submenu: FIRMWARE SETTINGS
prompt: LANGUAGE
description: Overrides the language mode of the emulated console.
choices:
"Use Host": "auto"
"English": "en"
"Japanese": "jp"
"French": "fr"
"German": "de"
"Italian": "it"
"Spanish": "es"
"Don't Override": "default"
melondsds_colour:
submenu: FIRMWARE SETTINGS
prompt: FAVOURITE COLOUR
description: The theme colour of the emulated console.
choices:
"Gray": 0
"Brown": 1
"Red": 2
"Light Pink": 3
"Orange": 4
"Yellow": 5
"Lime": 6
"Light Green": 7
"Dark Green": 8
"Turquoise": 9
"Light Blue": 10
"Blue": 11
"Dark Blue": 12
"Dark Purple": 13
"Light Purple": 14
"Dark Pink": 15
"Don't Override": "default"
melondsds_month:
submenu: FIRMWARE SETTINGS
prompt: BIRTH MONTH
description: The month of your birthay.
choices:
"January": 1
"February": 2
"March": 3
"April": 4
"May": 5
"June": 6
"July": 7
"August": 8
"September": 9
"October": 10
"November": 11
"December": 12
"Don't Override": "default"
melondsds_day:
submenu: FIRMWARE SETTINGS
prompt: BIRTH DAY
description: The day within the month of your birthday.
choices:
"1st": 1
"2nd": 2
"3rd": 3
"4th": 4
"5th": 5
"6th": 6
"7th": 7
"8th": 8
"9th": 9
"10th": 10
"11th": 11