forked from niuus/Snes9xRX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
1221 lines (989 loc) · 49.6 KB
/
README.txt
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
_____________________________________________________________________________
|0O×øo· Snes9x RX ·oø×O0|
| https://github.com/niuus/snes9xrx |
| Based/forked from: |
| https://github.com/dborth/snes9xgx |
| (Under GPL License) |
|___________________________________________________________________________|
Snes9x RX is a Super Nintendo™ / Super Famicom emulator for the Nintendo Wii.
Snes9x RX is a fork from Snes9x GX, a port of Snes9x (http://www.snes9x.com).
Snes9x RX is a "homebrew application" which means you will need a way to run
unsigned code on your Nintendo Wii. The best website for getting started with
Wii homebrew is WiiBrew (www.wiibrew.org).
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| FEATURES |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
* Core based on Snes9x 1.52
* Wiimote, Nunchuk, Wii Classic/Classic Pro, and Gamecube controller support
* Wii U Pro, Wii U GamePad, NES and SNES Classic controller support
* Retrode 2 USB adapter support, so you can use the real controllers!
* Experimental DualShock 3 support
* SNES Superscope, Justifier, Mouse peripherals emulation support
* Cheat support
* Auto Load/Save Game Snapshots and SRAM
* Custom controller configurations
* SD, USB, DVD, SMB, Zip, and 7z support
* Autodetect PAL/NTSC, 16:9 widescreen support
* Original/filtered (Sharp & Soft))/Unfiltered video modes
* Turbo Mode - up to 2x the normal speed
* Zoom option to zoom in/out
* Open Source!
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| UPDATE HISTORY |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
[4.4.0 - November 07, 2019]
* Fixed Funaki Masakatsu Hybrid Wrestler – Tougi Denshou graphical glitch.
* Retrode 2 support tweaks.
[4.3.0 - August 14, 2019]
* Fixed "PowerFest 94 - Super Mario Kart" black screen.
* Fixed Kat's Run - Zen-Nihon K-Car Senshuken graphic bg corruption during
demo. Phalanx random black screen is fixed too.
* Fixed Clayfighter blue clown face when selecting a player.
* Fixed Stunt Race FX graphical glitch on the course selection screen.
* Fixed Light Fantasy SRAM saving issues.
* Fix out-of-bounds memory access. [bearoso]
* Working buttons for all SNES peripherals.
Mouse, SuperScope and the Konami's Justifier trigger/buttons never worked in
any other controllers except the GCN pad and Wiimote. Now you can use the
Wii Classic Controller, Wii U Pro Controller and Wii U Gamepad to
fully emulate the peripherals.
[4.2.0 - August 07, 2019]
* Avoid USB call if there's no Retrode. [revvv]
* Fix M.A.C.S. Basic Rifle Marksmanship. [ghost - OV2]
The flickering was because game thinks joypad2 is constantly firing on/off.
* Cleanup time.
* Spanish language translation update.
* JoJo no Kimyō na Bōken and Kick Off graphical glitches fixed. [bearoso]
* Fixed Speedy Gonzales - Los Gatos Bandidos game freeze. [bearoso]
* Fixed Doom graphical garbage. [twinaphex]
[4.1.0 - August 01, 2019]
* Backport+adjust the refactored APU Resampler. [bladeoner]
* Adjust default input rate.
* Retrode 2 USB adapter support (thank revvv!)
The Retrode 2 cartridge reader offers USB mass storage access for your SNES
cartridges, besides 4 ports for original controllers, more specifically:
two SuperNES and two Genesis gamepads. 2 players are supported!
Some notes from revvv:
"- If the Retrode does not react, you just have to restart Snes9x GX.
I never had to restart HBC or the Wii. This happens with my fork, too.
But not very often.
- Doom is a good testcase: My first build had a huge lag, but only with
this game. After polling the Retrode only for player 1, the lag disappeared.
(Doom is a single player game, so it's strange that they poll player 2.)"
[4.0.0 - July 28, 2019]
* Add Wii U GamePad support. [Fix94 - Tantric]
* Allow "Original" render mode to be selectable when using the Wii Options
TV Resolution setting for "EDTV or HDTV (480p)" over component cables:
- This caters specifically to LCD / LED users with 240p supported displays,
since the option was previously hidden. Users with CRT / PVM / BVM displays
with supported 480p Progressive Scan mode will also benefit, since no Wii
setting change will be needed for the "Original" 240p mode to be used.
* Restore MSU1 playback position correctly. [bearoso]
* Restore MSU1_AUDIO_POS. [bearoso]
[3.9.0 - July 26, 2019]
* Korean language update, minor cleanup. [DDinghoya]
* GFX.DoInterlace-- should occur even if we don't render frame. [bearoso]
* Move interlace flags to S9xSoftResetPPU. [bearoso]
* Fix PPU blending with unoptimized change. [bearoso]
* Use a lookup table. A little faster. [bearoso]
* Fix color add for non-GFX_MULTI_FORMAT. [bearoso]
* Make blending work with RGB555. [bearoso]
* Proper 16-bit color conversion. [bearoso]
* Use for loops for DRAW_TILE. 3-4% speed benefit. [bearoso]
[3.8.0 - July 24, 2019]
* Cleanup screenshot memory management. This fixes the preview image
not displaying on Gamecube. [Tantric]
* Tenshi No Uta (Japan) compatibility hack.
[3.7.0 - March 19, 2019]
* Fix issue with on-screen keyboard. [Tantric]
* Fix crash on launch when using network shares. [Tantric]
* Various settings fixes.
* Updated spanish language translation.
[3.6.0 - February 21, 2019]
* Remove wiiupc since libogc wiiuse supports WiiU Pro controller. [Tantric]
* Re-add explicit Wii U Pro controller mappings. [Tantric]
* Fix joystick calculations and controllers with no analog sticks. [Tantric]
* Simplify logic for controller analog sticks. [Tantric]
* Fix crash for Wiiflow plugin mode. (thanks, fledge68!)
[3.5.0 - February 02, 2019]
* Add Interpolation option and add Gamemenu Audio. [bladeoner]
This adds the following:
- A new "Audio" menu inside "Game". Now you can choose between:
Gaussian Interpolation (Accurate), Linear, or None.
* Restore GUI sounds and BG music.
* Add ability to externally load fonts and activate Japanese/Korean. [Tantric]
Put the jp.ttf and ko.ttf inside the Apps > Snes9xRX folder.
You can download them from the Snes9X RX GitHub "hbc" folder.
* Add support to load external background music. [Tantric]
Put your bg_music.ogg inside the Apps > Snes9xRX folder.
[3.4.0 - February 01, 2019]
* Quick and dirty attempt to prevent reading and writing
from/to the same audio buffer. [Tantric]
* Avoid using file stat when possible. It's slow. [Tantric]
* Fixed black screen: Tengai Makyou Zero. [bladeoner]
[3.3.0 - January 28, 2019]
* Remove two asserts in SPC.
* Rewritten audio code. WIP. [Tantric]
* Add logic to update the playback rate dynamically. [Tantric]
[3.2.0 - January 26, 2019]
* We only use the HermiteResampler. [Tantric]
* SwitchAudioMode update.
* Update hermite resampler to support dynamic rate control.
Fixes audio blips. Remove some asserts in APU. [Tantric]
[3.1.0 - January 24, 2019]
* Kirby Super Star intro fix. (thanks, bladeoner!)
* Reorder init to init snes9x memory earlier so it goes into MEM1. [Tantric]
* Mute sound when in turbo mode, otherwise the APU buffer can get messed up. [Tantric]
* Fix sound crackling. [Tantric]
* Change audio playback to 48khz. this should fix the tinny sound problem. [Tantric]
* Try to improve audio sync & reduce sound input rate slightly. [Tantric]
* Disable sound sync (if enabled) when using turbo mode.
Fixes sound cutting off when using turbo. [Tantric]
* Also break out of S9xMainLoop in original location. [bearoso]
* Invoke Menu with Start+A+B+Z, special for NES-SNES to GCN adapters.
[3.0.0 - January 08, 2019]
* Gamecube Virtual Memory implementation. [emukidid]
- Adds ARAM usage via the TLB.
* Add toggle to enable/disable virtual memory info.
* Miscellaneous fixes.
[2.9.0 - January 07, 2019]
* Port option to not append "Auto" from vbagx. [libertyernie]
* Correct the default aspect ratio if the Wii has 16:9 set up. [Tantric]
[2.8.0 - January 06, 2019]
* Credits crash fix and minor update.
* Removed ImageFolder from GCSettings because it can always be retrieved
from GCSettings.PreviewImage, added function to get its value. [cebolleto]
* Changing image preview with plus button. [cebolleto]
[2.7.0 - January 03, 2019]
* Remove GUI Sounds and BG Music. A bit more resources available now. [bladeoner]
* Change settings.xml to settingsRX.xml [bladeoner]
* Remove rumble in GUI function. [bladeoner]
* Rollback scanline filter fix. Makes it crash when loading a ROM on the GCN port.
* Backport fix GC build with scanline filter. [Tantric - bladeoner]
* Forgotten cleanup for remove rumble function. [bladeoner]
[2.6.0 - December 29, 2018]
* Settings saving fix. (thanks, Askot!)
* New video filters / Fix for HQ2X-Scanlines change. [Tantric]
* Minor menu optimizations. [Tantric]
* Rollback graphic fix that broke StarFox graphics.
[2.5.0 - December 24, 2018]
* Remove some debugger code in cpuexec.
* Fix Mario's Time Machine. [bearoso]
* Fix tile selection in mosaic offset-per-tile mode. Fixes first Contra 3 boss. [bearoso]
[2.4.0 - December 22, 2018]
* Use a license stub everywhere. [bladeoner]
[2.3.0 - December 20, 2018]
* Remove some debugger code.
* Remove some movie code from logger.
* Change where we break S9xMainLoopScan for input (Brunnis lag fix) [bearoso]
* Don't break interlace syncopation on frame skip. [bearoso]
* Add DMA timing hack for Koryu no Mimi translation by rpgone. [OV2]
[2.2.0 - December 7, 2018]
* Update ko.lang [DDinghoya]
* Automatically create preview image dirs if they don't exist. [Tantric]
* Remove update check completely. [Tantric]
* Reorder init to init snes9x memory earlier so it goes into MEM1. [Tantric]
* Disable multi pixel format support. [Tantric]
* Code cleanup and fix include references. [bladeoner]
* Change some defaults ("Artworks" to "Artwork"). [Tantric]
* Prevent overrunning the file buffer, increase buffer size to load larger IPS/UPS files. [Tantric]
[2.1.0 - November 26, 2018]
* Add BPS soft-patching support. [qwertymodo]
* MSU1 fixes backported. [bladeoner, qwertymodo]
* Compile fixes for Linux. [bladeoner]
* Allow loader (e.g. Homebrew Channel) to pass two arguments instead of three for autoload. [libertyernie]
* Check argc. [libertyernie]
[2.0.0 - October 21, 2017]
* Compatible with the new english translation for "Tengai Makyou Zero - FeoE".
[1.9.0 - October 10, 2017]
* Remove things and tidy up.
[1.8.0 - September 29, 2017]
* Partially remove movie code (part 6).
* Update mouse handling.
* Partially remove NETPLAY code.
[1.7.2 - September 27, 2017]
* Partially remove movie code (part 5).
[1.7.1 - September 26, 2017]
* Partially remove movie code (part 4).
[1.7.0 - September 25, 2017]
* Partially remove movie code (part 3).
[1.6.0 - September 05, 2017]
* Partially remove movie code (part 2).
* Fix MSU-1 file loading after saving/loading snapshots. [qwertymodo]
* Sync MSU-1 code with upstream (sync 2). [qwertymodo]
[1.5.0 - September 01, 2017]
* Partially remove movie code (part 1).
* New attempt to fix RAM mapping for Light Fantasy (matches Higan). [qwertymodo]
[1.4.0 - August 31, 2017]
* SuperFX fixes and improvements, some from snes9x2010. [jamsilva]
[1.3.0 - August 30, 2017]
* Added 20 MHz overclock option for the SuperFX chip.
* Remove movie code. [twinaphex]
* Sync MSU-1 code with upstream (sync 1). [qwertymodo]
* Circuit USA timing hack. [bearoso]
[1.2.0 - July 03, 2017]
* Copied VLDC9 fix from snes9x_3ds. [jamsilva]
* Support for more SA1 char conversion modes. [jamsilva]
* Still cleaning things up... [jamsilva]
[1.1.0 - January 14, 2017]
* Remove unnecessary msu1 reset. [OV2]
* Pack status registers before snapshotting so they're not lost. [GregorR]
[1.0.0 - December 27, 2016]
* New color scheme.
* Changed references to bapu/dsp
* Revisited and updated spanish translation.
* Revisited and updated italian translation.
* Removed unused files.
* Fixed GC build.
* Fast-Forward on the right stick is enabled again.
* MSU-1 fixes from the qwertymodo branch.
* The minimum file size for a ROM is now 30KB.
* Fixed typos.
[older update history at the bottom]
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| INSTALLATION |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
To install Snes9x RX you will need to copy over the "apps" and "snes9xgx"
folders (directories) from this archive to your SD Card. It comes
pre-packaged in the Homebrew Channel format (which you will use to launch
the emulator). Once you've copied the directories to your SD Card you will
need to place your ROM image(s) into "\snes9xgx\roms" directory. Optionally,
you can also place cheat code files and artwork/covers in their respectively
named folders inside the "\snes9xgx\" directory. The folders will be created
at first run, if you want to acquire the files later. Once this is done, you
can proceed to run the emulator via the Homebrew Channel, or by using using
the Snes9x RX Forwarder Channel already installed on your System Menu.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| INITIAL SETUP |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
The first time you run Snes9x RX it will create a new "settingsRX.xml" file on
the SD Card which stores the configuration of the emulator. So when you run
Snes9x RX it will automatically detect your storage medium and will bring you
to the ROM selection screen. If you want to run a game with the default
settings then just highlight the game and press "A" on it and it will load.
However, you can configure Snes9x RX to your liking.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| CONFIGURATION |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
To configure Snes9x RX press "A" on the "Settings" box. This will bring up
the "Settings" screen where you can configure the Button Mappings, Video,
Saving, Menu and Network. You can also restore the settings to their initial
values by clicking on the "Reset Settings" and you can return to the ROM
selection screen by clicking on "Go Back".
--•[ Button Mappings ]•--
Once in the Button Mappings settings menu, you'll have the option to configure
almost all the controllers already supported (except the Retrode 2 USB
or the Dualshock 3). You can also configure SNES peripherals like the Mouse,
Super Scope, and the Konami's Justifier, although you can only alter the
mappings for these in the GameCube controller and Wiimote sections. Once you
select a controller to configure, you will be presented with which input
device you would like to remap. To set any buttons, simply click on the input
device you wish to use and then pick the button. After you select a button to
configure, Snes9x RX will prompt you to press the button you want to assign
to the button you've selected. Below is a list of each controller, followed
by the input devices and the default values for those devices.
[ SNES Controller ]
• GameCube Controller
A = A
B = B
X = X
Y = Y
L = L
R = R
START = START
SELECT = Z
UP = UP
DOWN = DOWN
LEFT = LEFT
RIGHT = RIGHT
• Wiimote
A = B
B = 2
X = 1
Y = A
START = PLUS
SELECT = MINUS
UP = UP
DOWN = DOWN
LEFT = LEFT
RIGHT = RIGHT
• Wii Classic Controller
• Wii Classic Controller Pro
• Wii U Pro Controller
• Wii U GamePad
A = A
B = B
X = X
Y = Y
L = L
R = R
START = PLUS
SELECT = MINUS
UP = UP
DOWN = DOWN
LEFT = LEFT
RIGHT = RIGHT
• Wiimote Nunchuck + Wiimote
A = A
B = B
X = C
Y = Z
L = 2
R = 1
START = PLUS
SELECT = MINUS
UP = UP
DOWN = DOWN
LEFT = LEFT
RIGHT = RIGHT
[ SNES Mouse ]
• GameCube Controller
LEFT BUTTON = A
RIGHT BUTTON = B
• Wiimote
LEFT BUTTON = A
RIGHT BUTTON = B
• Wii Classic Controller
• Wii Classic Controller Pro
• Wii U Pro Controller
• Wii U GamePad
LEFT BUTTON = B
RIGHT BUTTON = A
[ Super Scope ]
• GameCube Controller
FIRE = A
AIM OFFSCREEN = B
CURSOR = Z
TURBO ON = Y
TURBO OFF = X
PAUSE = START
• Wiimote
FIRE = B
AIM OFFSCREEN = A
CURSOR = MINUS
TURBO ON = UP
TURBO OFF = DOWN
PAUSE = PLUS
• Wii Classic Controller
• Wii Classic Controller Pro
• Wii U Pro Controller
• Wii U GamePad
FIRE = B
AIM OFFSCREEN = A
CURSOR = MINUS
TURBO ON = Y
TURBO OFF = X
PAUSE = PLUS
[ Justifier ]
• GameCube Controller
FIRE = A
AIM OFFSCREEN = B
START = START
• Wiimote
FIRE = B
AIM OFFSCREEN = A
START = PLUS
• Wii Classic Controller
• Wii Classic Controller Pro
• Wii U Pro Controller
• Wii U GamePad
FIRE = B
AIM OFFSCREEN = A
START = PLUS
--•[ VIDEO ]•--
The Video settings screen will allow you to configure various video settings
including the Rendering method, Scaling, Filtering, Screen Zoom and Screen
Position. You can toggle the options for the first three selections by
clicking on them. To make the Filtering option you select you must enable
Filtering under the Rendering setting.
• Rendering - Unfiltered
- Filtered (Soft)
- Filtered (Sharp)
- Original
- Filtered
• Scaling - Default
- 16:9 Correction
• Filtering - None
- hq2x
- hq2x Soft
- hq2x Bold
- Scanlines
Screen Zoom will bring up a menu where you can adjust the Zoom level by using
the left and right arrows that you can click on. The default setting is 100%.
The Screen Position option will bring up a screen with four arrows that
allows you to move the position of the output. You'll only need to use this
option if the screen is not centered. Combining this with the Zoom and
Scaling you should be able to get a proper display on your television.
--•[ SAVING & LOADING ]•--
From this setup option you can configure the way Snes9x RX loads and saves.
Your options are Load Device, Save Device, Load Folder, Save Folder, Auto
Load and Auto Save. Clicking on all of the options except the ones about
folders, will let you toggle through their settings. Clicking on the folder
options will bring up a text box where you can enter any other path you wish
to use, in case you have the need to customize it. This is also true for the
Cheats, Screenshots, Covers, and Artwork options.
Snes9x RX has two types of saves - one is the SRAM which is
the save game data (this is only applicable if the game you're playing
supports battery saving) and the other is Snapshots, which are real time saves.
Real time saves allow you to save your game in it's current state and resume it
at a later time.
• Load Device - SD, USB, DVD, Network and Auto Detect
• Save Device - SD, USB, Network and Auto Detect
• Auto Load - SRAM, Snapshot and Off
• Auto Save - SRAM, Snapshot, Both and Off
You can also toggle the option to append "Auto" into the filename of all the
automatic SRAM saves that the emulator creates whenever you play a supported
battery saving cartridge.
--•[ MENU ]•--
This settings screen will allow you to customize a few aspects on how the
Menu works including the Exit Action, Wiimote Orientation (for navigating
through the menues), Music Volume, Sound Effects Volume, Display Virtual
Memory (inside the Game Menu), Language, and the type of Preview Image
you'd like on the Choose Game screen. The Exit Action can be set to
"Return to Loader", "Return to Wii Menu" and "Power off Wii".
--•[ NETWORK ]•--
If you're going to be using your Network (LAN) to load and/or save from,
you will need to enter in the SMB share settings you've setup on your
computer via this settings menu. You will need to enter in the SMB Share IP,
SMB Share Name, SMB Share Username and SMB Share Password. If you do not
have a password on your SMB share, then set the SMB Share Password to "0".
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| FILE BROWSER |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
The File Browser will automatically load when you start the emulator, and it
will automatically list the contents of the "\snes9xgx\roms\" directory on
your SD card. Like mentioned above in the Configuration -> Saving & Loading
you can specify a different directory to load from. To launch a game
(the game can either be uncompressed or inside a ZIP archive) simply click
on it and it will load. In the case of 7z compressed files, you will be
presented with a list of the supported games inside the archive. You may
also change the directory you're in by clicking on "Up One Level".
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| GAMEPLAY |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
Once you load a game, you can access a special menu by pressing the
Wii/Wii U controller's "Home" button / Gamecube controller's C-stick left.
If you're using any of the other input controllers or a special conversion,
simply press the button combination Start+A+B+Z/Select. This will bring up
the Save, Load, Delete, Game Settings and Reset options.
From this menu you can also return to the Choose Game screen by selecting
"Main Menu". To leave the menu and resume game play select "Close".
The Save option will allow you to save either your SRAM or a Snapshot. Once
you've selected Save, two options will appear named "New SRAM" and "New
Snapshot". Clicking on either these will create a new save. Once you have
a save, you can save over it by selecting it instead of the "New" option.
The Load option will allow you to load your saved SRAM or Snapshot.
Finally, the Delete option allows you to delete any of your snapshots or
SRAM saves. Reset will just reset the game, as in the real console.
If you pick Game Settings, you can use other special options which are:
* Controller: toggle between which compatible SNES peripheral you wish to use
your game with, be it two controllers, Multitap (for up to 4 players), Mouse,
Superscope, or the Konami's Justifier lightgun. Finally, the option Cheats
will allow you to enable/disable your cheat codes.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| CHEATS |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
Cheats are loaded from the "\snes9xgx\cheats" directory and must be in the
SNES9X .CHT file format. They also must be named the same name as the game
you're playing with the .cht extension. An example would be if you have a
ROM called "Super Mario World.smc" you would need to name your .cht file to
"Super Mario World.cht". You can find a link to a massive collection of Super
NES cheat codes in the Links section below.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| TURBO MODE |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
TurboMode increases the playback speed of the game by about 2x. To use it,
simply press and hold right on the C-stick (yellow control stick on the
Gamecube controller), the right analog stick (Wii Classic Controller/Pro),
or the ZL button (Wii U Pro Controller) for as long as you want gameplay
to be faster. Release the stick/button whenever you want normal playback
speed to resume.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| IMPORTING AND EXPORTING SRAM |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
Snes9x RX now includes the ability to load SRAM from Snes9x on other
platforms (Mac/PC/Linux/etc) and to save back to those platforms.
To load a SRAM file on the Wii or Gamecube from another platform, ensure the
name of the SRM file matches the filename of the ROM (except with an SRM
extension).
To use a Wii/GameCube SRAM file on another platform just do the opposite:
copy the saved SRAM file to the other platform. You may have to rename the
file to be what that version of snes9x expects it to be.
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
| UPDATE HISTORY (OLD) |
•˜———–—––-- - —————————––––– ———–—––-- - —————————––––– ———–—––-- - ————————•
[4.3.7 - December 9, 2016]
* Hide saving dialog that pops up briefly when returning from a game
[4.3.6 - September 12, 2016]
* Added the delete save file (SRAM / Snapshot) option
* Changed the box colors for the SRAM and Snapshots files to match the color scheme of the emu GUI
* Change the "Power off Wii" exit option to completely turn off the wii, ignoring the WC24 settings
* Updated emulator credits
* Added an option to switch between screenshots, covers, or artworks images,
with their respectively named folders inside /snes9xgx at the device's root.
You can set which one to show, by going to Settings > Menu > Preview Image.
The .PNG image file needs to have the same name as the ROM (e.g.: Contra III.png)
[4.3.5 - February 06, 2016]
* Added Fix94 wiiflow plugin mode
* Removed sound from GUI and now gets better perfomance/FPS on games like
Yoshi's Island and Kirby Dream Land 3.
[4.3.4 - February 2, 2016]
* Fixed screenshot image dimensions
* Fixed screenshot option, it no longer creates an additional "dummy" file
* Fixed performance issues, reverted to previous vsync method
* Removed automatic download of newer versions by Burnt Lasagna.
* Compiled with devkitPPC r26
Note: If compiled with devkitPPC r27 some games, like Final Fantasy III
and Chrono Trigger would crash on a battle
[4.3.3 - September 3, 2015 - July 7, 2015]
* Added Cebolleto's preview image support
* Added WiiUPro controller support
* Added a Scanline filter option
* Increase preview image size and reduce game list width
* Added a background to the preview image
* Added a Screenshot button
* Added a "WiiuPro" button on the button mapping menu
* Fixed the inverted color button selection that was in some option windows
[4.3.2 - November 9, 2012]
* Fixed lag with GameCube controllers
[4.3.1 - July 7, 2012]
* Fixed PAL support
[4.3.0 - July 6, 2012]
* Support for newer Wiimotes
* Fixed screen flicker when going back to menu
* Improved L/R buttons for GameCube - trigger button press when 50%+ depressed
* Improved controller behavior - allow two directions to be pressed simultaneously
* Timing changes
* Compiled with devkitPPC r26 and libogc 1.8.11
[4.2.9 - January 14, 2012]
* More accurate pixel scaling (thanks eke-eke!)
* Other minor changes
[4.2.8 - May 15, 2011]
* Ported a few upstream game fixes for: Mutant Chronicles - Doom Troopers,
Porky Pig's Haunted Holiday, Big Sky Trooper, and Mechwarrior 3050 / Battle
Tech 3050
* Added Turkish translation
[4.2.7 - March 23, 2011]
* Fixed browser regressions with stability and speed
* Reverted zones' changes to IRQ and SA-1 - these caused a performance hit
[4.2.6 - March 19, 2011]
* Improved game compatibility (updated core to latest Snes9x)
* Fixed issue with cheats not persisting
* Improved USB and controller compatibility (recompiled with latest libogc)
* Enabled SMB on GameCube (thanks Extrems!)
* Added Catalan translation
* Translation updates
[4.2.5 - October 7, 2010]
* Sync with upstream SVN - fixes a few specific game issues
* Fixed "blank listing" issue for SMB
* Improved USB compatibility and speed
* Added Portuguese and Brazilian Portuguese translations
* Other minor changes
[4.2.4 - August 14, 2010]
* IOS 202 support removed
* USB 2.0 support via IOS 58 added - requires that IOS58 be pre-installed
* DVD support via AHBPROT - requires latest HBC
[4.2.3 - July 22, 2010]
* Fixed broken auto-update
[4.2.2 - July 20, 2010]
* Reverted USB2 changes
* Fixed return-to-menu crash with Filtered mode
[4.2.1 - July 14, 2010]
* Improved audio timing
* Fixed 16:9 correction in Original mode
* Ability to use both USB ports (requires updated IOS 202 - WARNING: older
versions of IOS 202 are NO LONGER supported)
* Fixed issue with IPS patch files
* Hide non-ROM files
* Other minor improvements
[4.2.0 - June 20, 2010]
* Fixed incorrect aspect ratio issue
* Fixed choppy framerate issue
* Fixed IPS/UPS patching
* USB improvements
* GameCube improvements - audio, SD Gecko, show thumbnails for saves
* Other minor changes
[4.1.9 - May 19, 2010]
* DVD support fixed
* Fixed some cheats issues
* Fixed some potential hangs when returning to menu
* Video/audio code changes
* Fixed scrolling text bug
* Other minor changes
[4.1.8 - April 9, 2010]
* Fix auto-save bug
[4.1.7 - April 9, 2010]
* Freezing issue fixed
* Core timing fixes, should solve some problems with some games
* Most 3rd party controllers should work now (you're welcome!)
* 7z crash fixed
* GameCube only - DVD/SD Gecko fixed (thanks emukidid!)
* Translation updates (German and Dutch)
* Other minor changes
[4.1.6 - March 30, 2010]
* New core! Updated to Snes9x 1.52. Old save states will not work!
* DVD / USB 2.0 support via IOS 202. DVDx support has been dropped. It is
highly recommended to install IOS 202 via the included installer
* Multi-language support (only French translation is fully complete)
* Thank you to everyone who submitted translations
* SMB improvements/bug fixes
* Minor video & input performance optimizations
* Now uses .srm files without "Auto" appended, if found
* Added option to disable crosshair
[4.1.5 - December 23, 2009]
* Changed default folders to snes9xgx/roms and snes9xgx/saves. Old folders
will be automatically moved to the new location
* File browser now scrolls down to the last game when returning to browser
* Auto update for those using USB now works
* Fixed scrollbar up/down buttons
* Minor optimizations
[4.1.4 - December 2, 2009]
* Fixed SMB (for real this time!)
* Fixed snapshot loading regression
[4.1.3 - November 30, 2009]
* Fixed SMB
* Added separate horizontal/vertical zoom options
* Improved scrolling timing - the more you scroll, the fast it goes
* Fixed reset button on Wii console - now you can reset multiple times
* Minor code optimizations
* Reduce memory fragmentation - fixes out of memory crashes
[4.1.2 - October 7, 2009]
* Revamped filebrowser and file I/O
* Many, many other bug fixes
[4.1.1 - September 19, 2009]
* Fixed black screen bug
[4.1.0 - September 16, 2009]
* Text rendering corrections
* SMB improvements
* Built with latest libraries
* Video mode switching now works properly
* Other minor bugfixes and cleanup
[4.0.9 - July 22, 2009]
* Fixed "No game saves found." message when there are actually saves.
* Fixed shift key on keyboard
* Text scrolling works again
* Change default prompt window selection to "Cancel" button
[4.0.8 - July 9, 2009]
* Faster SMB/USB browsing
* Last browsed folder is now remembered
* Fixed controller mapping reset button
* Fixed no sound on GameCube version
* Directory names are no longer altered
* Preferences now only saved on exit
* Fixed on-screen keyboard glitches
* SRAM auto-saved on power-off from within a game
* Prevent 7z lockups, better 7z error messages
* Increase cheats limit from 30 to 150
* Cheats no longer effect next game loaded - they are cleared properly
[4.0.7 - June 30, 2009]
* Fixed auto-update
* Increased file browser listing to 10 entries, decreased font size
* Added text scrolling on file browser
* Added reset button for controller mappings
* Settings are now loaded from USB when loading the app from USB on HBC
* Fixed menu crashes caused by ogg player bugs
* Fixed memory card saving verification bug
* Fixed game savebrowser bugs
* Miscellaneous code cleanup/corrections
[4.0.6 - May 30, 2009]
* Fixed SD/USB corruption bug
* SMB works again
* GUI bugs fixed, GUI behavioral improvements
[4.0.5 - May 26, 2009]
* Improved stability
* Fixed broken SDHC from HBC 1.0.2 update
* Fixed issues with returning to menu from in-game
* Add option to disable rumble
* Auto-determines if HBC is present - returns to Wii menu otherwise
* Fixed Super Scope turbo button issue
* Miscellaneous bugfixes
[4.0.4 - April 30, 2009]
* Improved scrollbar
* Built with more stable libogc/libfat
* Fixed rumble bug in filebrowser
* Added confirmation prompts
* Fixed settings saving glitches
[4.0.3 - April 23, 2009]
* Settings resetting glitch fixed
[4.0.2 - April 22, 2009]
* GameCube controller home trigger fixed
* USB support fixed
* More stable SMB support
* Corrections/improvements to game saving/loading
* Video mode corrections
* hq2x filter no longer crashes hi-res games on unfiltered/filtered modes
* Corrections to cheat file parsing
* Super Scope turbo now activated when holding Down button
* Settings are now saved when exiting game menu settings area
* Super Scope pause button now works
* Invalid VRAM access is now allowed - should fix some homebrew games
* New video mode selection in menu (forcing a video mode is not recommended)
[4.0.1 - April 13, 2009]
* Fixed turning off autosave in menu
* Keyboard fixed, more keys added
* Fixed 7z loading from DVD
* Enable auto loading and renaming of SRAM save without "Auto" in the name
* PAL resolution fixed - no more letterboxing
* File browser scrollbar box now draggable, arrow buttons now scroll list
* Better handling of multiple on-screen wiimotes
* Menu restructured - new "Game Settings" menu
[4.0.0 - April 4, 2009]
* New GX-based menu, with a completely redesigned layout. Has Wiimote IR
support, sounds, graphics, animation effects, and more
* Thanks to the3seashells for designing some top-notch artwork, to
Peter de Man for composing the music, and a special thanks to shagkur for
fixing libogc bugs that would have otherwise prevented the release
* Onscreen keyboard for changing save/load folders and network settings
* Menu configuration options (configurable exit button, wiimote orientation,
volumes)
* Configurable button mapping for superscope, mouse and justifier
* New save manager, allowing multiple saves and save browsing. Shows
screenshots for Snapshot saves, and save dates/times
* Experimental hq2x filter, contributed by michniewski
[009 - January 27, 2009]
* Faster SD/USB - new read-ahead cache
* Removed trigger of back to menu for Classic Controller right joystick
* Fixed a bug with reading files < 2048 bytes
* Fixed some memory leaks, buffer overflows, etc
* Code cleanup, other general bugfixes
[008 - December 24, 2008]
* Fixed unstable SD card access
* Proper SD/USB hotswap (Wii only)
* Auto-update feature (Wii only)
* Rewritten SMB access - speed boost, NTLM now supported (Wii only)
* Improved file access code
* Resetting preferences now resets controls
* Fixed "invalid file size" error on smaller games (eg: Space Invaders)
* Fixed hangup in Super Mario RPG
* Minor bug fixes
[007 - November 19, 2008]
* added: SDHC support
* added: SD/USB hot-swapping
* added: zoom saving
* added: IPS/UPS/PPF patch support
* added: Qoob modchip support (thanks emukidid!)
* added: Added console/remote power button support (Wii only)
* added: Added reset button support - resets game (Wii only)
* changed: Settings file is now named settingsRX.xml and is stored in the same
folder as the DOL - eg: apps/Snes9xGX/settingsRX.xml (Wii only)
* fixed: swc, sfc file support
* fixed: inverted sound channels
* fixed: some game crashes
* fixed: snapshot saving for games with SPC7110, BS, DSP, or CX4
* fixed: justifier support
* fixed: superscope turbo button
* fixed: widescreen support
* fixed: ActRaiser 2 issues
* fixed: Invalid memory accesses in C4 and OBC1. MMX3 Toxic Seahorse stage
now can be emulated with HDMA. (zones)
* fixed: Updated snapshot to prevent desync. Added some variables related to
APU and HDMA. (gocha)
* fixed: zoom issues (thanks eke-eke!)
* fixed: original modes (thanks eke-eke!)
* fixed: vertical scaling for filtered/unfiltered modes (thanks eke-eke!)
[006 - October 15, 2008]
Tantric
* added: 480p for GameCube
* added: Sound sync
* added: 7z support
* changed: Faster SD/USB access (readahead cache enabled)
* fixed: Video offset issues
* fixed: BS-X games work now
* fixed: Wii DVD works now
* fixed: DVD re-enabled for GameCube
* fixed: Nunchuk analog stick issues
* fixed: Many crashes, memory leaks, etc
michniewski