Homebrew Retroarch Emulation Thread (Nightly Builds Included)

Kurt91

Well-Known Member
Member
Joined
Sep 9, 2012
Messages
589
Trophies
1
Age
33
Location
Newport, WA
XP
2,236
Country
United States
I tried playing Ape Escape on the 11/24 nightly, and for some reason, up and down on the right stick are reversed. (N3DS .CIA) Any way that I can fix that?
 

kedest

Well-Known Member
Member
Joined
Feb 6, 2007
Messages
3,289
Trophies
0
Website
Visit site
XP
534
Country
Netherlands
Seems like it. My November 19th build of CatSFC works fine with DKC. Generally, graphic corruption is at the fault of the ROM, not the emulator.

It actually ran just fine before. Glitching started in the builds since a few weeks. If I take an older build, the glitching is gone - but that build won't run at proper speed because it doesn't use the right code to run at full N3DS speed (which hax 2.5 requires). It's the PAL rom by the way, perhaps that's why you're not having the same issue (you're running NTSC rom is my guess)
 

SeongGino

The Average One
Member
Joined
May 20, 2015
Messages
939
Trophies
0
Age
25
Location
Jersey, Jersey
Website
www.twitter.com
XP
1,932
Country
United States
It's the PAL rom by the way, perhaps that's why you're not having the same issue (you're running NTSC rom is my guess)

Indeed, NTSC rom here.
Also, it is usually full speed on my end (New *hax2.5). Eh, maybe I'm just getting the better end of the stick.
Are the piggybacking cores (FBA and MAME) still being troublesome, by the way?
 

Vague Rant

Deceptively cute
Member
Joined
Aug 7, 2008
Messages
2,463
Trophies
2
Location
Melbourne
Website
vaguerant.tumblr.com
XP
3,302
Country
Hi. I need help with mame.

When I start MAME2000 or 2003, I always get to choose an application (download play), then it freezes.

I have a N3ds 9.0. Cps1 works fine. And neogeo too.


Help

http://i.imgur.com/sYBAoCd.jpg
It's asking you to choose a title, not making you choose Download Play. Use the 3DS D-Pad to cycle through titles to run with. These large cores need to run under another title with large enough segments to fit their code.

The problem you'll face is that it's only a handful of titles that these cores are able to run under successfully. Super Smash Bros., Monster Hunter 4 and the latest version of YouTube are the known-working titles. Monster Hunter 3 likely to be another good option, but won't be selected automatically. If you have any of those earlier listed titles, these cores will run under those immediately, it's only if you don't have any that you hit the manual title selector. If you happen to have any of those on a cartridge, you could try putting them in before you play.

If you don't have any of those games, you'll just have to either download one (demos work, too) from the eShop if you still have access, find something else you have that will fit the RetroArch cores (e.g. by trial and error) or go out and buy one of them on cartridge.

There is also a second issue with those cores currently as discussed recently in this thread, but you can deal with that one once you get to it.

EDIT:
they are, I still didn't come up with a solution, in the meantime, you should be able to start them by using a shortcut with a valid rom path.
This is true, but complicated somewhat by the fact that reentrant loading is broken in MAME 2000. Users will need to create one shortcut per ROM for MAME 2000 currently.
How would one do this?
Here's what I did personally.
  1. Move all affected cores to a new directory so that they're no longer shown in the list. (I used /3ds/cromulent/)
  2. Select a small ROM from my collection to use as the default loaded ROM (keeping in mind that you'll have to wait for your selected ROM to load before you can start using the core).
  3. Create XML shortcuts for all three cores (see spoilers below) using my selected ROMs.
  4. Place these XMLs in /3ds
This way, the shortcuts appear in the list, taking the place of the full (non-working) cores.
Code:
<shortcut>
    <executable>/3ds/cromulent/fb_alpha_libretro/fb_alpha_libretro.3dsx</executable>
    <icon>/3ds/cromulent/fb_alpha_libretro/fb_alpha_libretro.smdh</icon>
    <arg>/Games/Arcade/FB Alpha/Other/flicky.zip</arg>
</shortcut>
<targets selectable="true">
	<!--   YouTube (USA)-->
	<title mediatype="1">00040000000B0F00</title>
	<!--   YouTube (Europe)-->
	<title mediatype="1">00040000000CCD00</title>
	<!--   YouTube (Japan)-->
	<title mediatype="1">00040000000D3000</title>
	<!--   Monster Hunter 4 Ultimate Special Demo (USA)-->
	<title mediatype="1">000400000015FA00</title>
	<!--   Monster Hunter 4 Ultimate Special Demo (Europe)-->
	<title mediatype="1">000400000015FB00</title>
	<!--   Monster Hunter 4 Ultimate (USA eShop)-->
	<title mediatype="1">0004000000126300</title>
	<!--   Monster Hunter 4 Ultimate (Europe eShop)-->
	<title mediatype="1">0004000000126100</title>
	<!--   Monster Hunter 4G (Japan eShop)-->
	<title mediatype="1">000400000011D700</title>
	<!--   Monster Hunter 4 Ultimate (USA cartridge)-->
	<title mediatype="2">0004000000126300</title>
	<!--   Monster Hunter 4 Ultimate (Europe cartridge)-->
	<title mediatype="2">0004000000126100</title>
	<!--   Monster Hunter 4 Ultimate (Japan cartridge)-->
	<title mediatype="2">000400000011D700</title>
	<!--   Super Smash Bros. for Nintendo 3DS Demo (USA)-->
	<title mediatype="1">000400000014E500</title>
	<!--   Super Smash Bros. for Nintendo 3DS Demo (Europe)-->
	<title mediatype="1">000400000014E600</title>
	<!--   Super Smash Bros. for Nintendo 3DS Special Demo (USA)-->
	<title mediatype="1">000400000014C200</title>
	<!--   Super Smash Bros. for Nintendo 3DS Special Demo (Europe)-->
	<title mediatype="1">000400000014C300</title>
	<!--   Super Smash Bros. for Nintendo 3DS (USA eShop)-->
	<title mediatype="1">00040000000EDF00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (Europe eShop)-->
	<title mediatype="1">00040000000EE000</title>
	<!--   Dairantou Smash Brothers for Nintendo 3DS (Japan eShop)-->
	<title mediatype="1">00040000000B8B00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (USA cartridge)-->
	<title mediatype="2">00040000000EDF00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (Europe cartridge)-->
	<title mediatype="2">00040000000EE000</title>
	<!--   Dairantou Smash Brothers for Nintendo 3DS (Japan cartridge)-->
	<title mediatype="2">00040000000B8B00</title>
</targets>
Code:
<shortcut>
    <executable>/3ds/cromulent/mame2000_libretro/mame2000_libretro.3dsx</executable>
    <icon>/3ds/cromulent/mame2000_libretro/mame2000_libretro.smdh</icon>
    <arg>/Games/Arcade/MAME 2000/smashtv.zip</arg>
</shortcut>
<targets selectable="true">
	<!--   YouTube (USA)-->
	<title mediatype="1">00040000000B0F00</title>
	<!--   YouTube (Europe)-->
	<title mediatype="1">00040000000CCD00</title>
	<!--   YouTube (Japan)-->
	<title mediatype="1">00040000000D3000</title>
	<!--   Monster Hunter 4 Ultimate Special Demo (USA)-->
	<title mediatype="1">000400000015FA00</title>
	<!--   Monster Hunter 4 Ultimate Special Demo (Europe)-->
	<title mediatype="1">000400000015FB00</title>
	<!--   Monster Hunter 4 Ultimate (USA eShop)-->
	<title mediatype="1">0004000000126300</title>
	<!--   Monster Hunter 4 Ultimate (Europe eShop)-->
	<title mediatype="1">0004000000126100</title>
	<!--   Monster Hunter 4G (Japan eShop)-->
	<title mediatype="1">000400000011D700</title>
	<!--   Monster Hunter 4 Ultimate (USA cartridge)-->
	<title mediatype="2">0004000000126300</title>
	<!--   Monster Hunter 4 Ultimate (Europe cartridge)-->
	<title mediatype="2">0004000000126100</title>
	<!--   Monster Hunter 4 Ultimate (Japan cartridge)-->
	<title mediatype="2">000400000011D700</title>
	<!--   Super Smash Bros. for Nintendo 3DS Demo (USA)-->
	<title mediatype="1">000400000014E500</title>
	<!--   Super Smash Bros. for Nintendo 3DS Demo (Europe)-->
	<title mediatype="1">000400000014E600</title>
	<!--   Super Smash Bros. for Nintendo 3DS Special Demo (USA)-->
	<title mediatype="1">000400000014C200</title>
	<!--   Super Smash Bros. for Nintendo 3DS Special Demo (Europe)-->
	<title mediatype="1">000400000014C300</title>
	<!--   Super Smash Bros. for Nintendo 3DS (USA eShop)-->
	<title mediatype="1">00040000000EDF00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (Europe eShop)-->
	<title mediatype="1">00040000000EE000</title>
	<!--   Dairantou Smash Brothers for Nintendo 3DS (Japan eShop)-->
	<title mediatype="1">00040000000B8B00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (USA cartridge)-->
	<title mediatype="2">00040000000EDF00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (Europe cartridge)-->
	<title mediatype="2">00040000000EE000</title>
	<!--   Dairantou Smash Brothers for Nintendo 3DS (Japan cartridge)-->
	<title mediatype="2">00040000000B8B00</title>
</targets>
Code:
<shortcut>
    <executable>/3ds/cromulent/mame2003_libretro/mame2003_libretro.3dsx</executable>
    <icon>/3ds/cromulent/mame2003_libretro/mame2003_libretro.smdh</icon>
    <arg>/Games/Arcade/MAME 2003/robotron.zip</arg>
</shortcut>
<targets selectable="true">
	<!--   YouTube (USA)-->
	<title mediatype="1">00040000000B0F00</title>
	<!--   YouTube (Europe)-->
	<title mediatype="1">00040000000CCD00</title>
	<!--   YouTube (Japan)-->
	<title mediatype="1">00040000000D3000</title>
	<!--   Monster Hunter 4 Ultimate Special Demo (USA)-->
	<title mediatype="1">000400000015FA00</title>
	<!--   Monster Hunter 4 Ultimate Special Demo (Europe)-->
	<title mediatype="1">000400000015FB00</title>
	<!--   Monster Hunter 4 Ultimate (USA eShop)-->
	<title mediatype="1">0004000000126300</title>
	<!--   Monster Hunter 4 Ultimate (Europe eShop)-->
	<title mediatype="1">0004000000126100</title>
	<!--   Monster Hunter 4G (Japan eShop)-->
	<title mediatype="1">000400000011D700</title>
	<!--   Monster Hunter 4 Ultimate (USA cartridge)-->
	<title mediatype="2">0004000000126300</title>
	<!--   Monster Hunter 4 Ultimate (Europe cartridge)-->
	<title mediatype="2">0004000000126100</title>
	<!--   Monster Hunter 4 Ultimate (Japan cartridge)-->
	<title mediatype="2">000400000011D700</title>
	<!--   Super Smash Bros. for Nintendo 3DS Demo (USA)-->
	<title mediatype="1">000400000014E500</title>
	<!--   Super Smash Bros. for Nintendo 3DS Demo (Europe)-->
	<title mediatype="1">000400000014E600</title>
	<!--   Super Smash Bros. for Nintendo 3DS Special Demo (USA)-->
	<title mediatype="1">000400000014C200</title>
	<!--   Super Smash Bros. for Nintendo 3DS Special Demo (Europe)-->
	<title mediatype="1">000400000014C300</title>
	<!--   Super Smash Bros. for Nintendo 3DS (USA eShop)-->
	<title mediatype="1">00040000000EDF00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (Europe eShop)-->
	<title mediatype="1">00040000000EE000</title>
	<!--   Dairantou Smash Brothers for Nintendo 3DS (Japan eShop)-->
	<title mediatype="1">00040000000B8B00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (USA cartridge)-->
	<title mediatype="2">00040000000EDF00</title>
	<!--   Super Smash Bros. for Nintendo 3DS (Europe cartridge)-->
	<title mediatype="2">00040000000EE000</title>
	<!--   Dairantou Smash Brothers for Nintendo 3DS (Japan cartridge)-->
	<title mediatype="2">00040000000B8B00</title>
</targets>
Again, keep in mind that MAME 2000 only allows loading one ROM at a time, so if you want to load more than one game you'll need to create more shortcuts.
 
Last edited by Vague Rant,

Vague Rant

Deceptively cute
Member
Joined
Aug 7, 2008
Messages
2,463
Trophies
2
Location
Melbourne
Website
vaguerant.tumblr.com
XP
3,302
Country
@Vague Rant

Edit. I tried with smash bros, and appears this:


Retroarch info: does not have enough samples for monitor refresh...... Requires at least 4096 frames.
That sounds like you're hitting up against the second issue with these cores that I mentioned. Ever since support was added for games to be loaded automatically on startup, these cores haven't worked standalone because they try to run a non-existent game. aliaspider is working on this, but in the meantime the recommendation is to run them via shortcuts instead, specifying a (correct) ROM for the core to run instead of the erroneous one it's receiving currently.

I described the process for getting this working in the second half of the post where I replied to you, after the edit.
 

RocketRobz

Stylish TWiLight Hero
Developer
Joined
Oct 1, 2010
Messages
16,594
Trophies
3
Age
24
XP
20,991
Country
United States
I hope that the Retroarch menu gets moved to the bottom screen soon, and also for the addition of photo images on the bottom screen for specific roms, similar to M2's (3D) Sega Genesis/Mega Drive emulator.
 

Greymane

Lurking gbatemp pony
Member
Joined
Jul 7, 2015
Messages
576
Trophies
0
Age
30
Location
In your closet, watching you clop
XP
2,162
Country
Netherlands
PCSX ReARMed crashes now when i load a .img file, fps jumpes between 9 to 15 and inbetween before crash

EDIT: N3ds ironhax .3dsx

EDIT 2: tested several other emulators of the pack, and they all crash after several seconds to a minute or 2. nes/snes/pcsx/gbc/gba

Edit 3: fixed it, just needed to reinstall retroarch.
 
Last edited by Greymane,

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
    OctoAori20 @ OctoAori20: Nice nice-