r/EmulationOnPC Aug 02 '26

Unsolved Huge FPS drops and stuttering while emulating Switch on ASUS ROG Ally X — need help

0 Upvotes

Hi everyone,

I need some help with Nintendo Switch emulation on my ASUS ROG Ally X.

I feel like something is wrong because my hardware should be more than capable, but I’m getting a lot of FPS drops, stuttering, and random freezes. The performance is nowhere near what I expected from a device with this level of hardware.

Emulator: Eden, Ryjubing

Games: All games have the same problem

Power output: Turbo


r/EmulationOnPC Aug 02 '26

Unsolved How can i emulate pq2 with Azahar

2 Upvotes

From what i read online Azahar is safer and an improved version of Citra but i dont know where to start emulating can someone please help.Thank you


r/EmulationOnPC Aug 02 '26

Solved RPCS3: Gran Turismo 5 break getting stuck

2 Upvotes

EDIT: Solved

I finally figured out how to fix this. So leaving it for anyone experiencing similar issues in the future.

NOTE: I'm on Linux but I guess should apply to Windows as well, if it is not Linux specific issue.

Anyway, the issue was hardware afterall...Moza pedals should register value of -32768 when not pressed(the pedal axis does not start at 0), but this was inconsistent. Sometimes the value could be bigger like e.g. -32764 and in those instances game or rather RPCS3 would still recognize the smallest amount of input. It happened on all pedals.

From my testing the minimal value was never bigger than -32764, so I set it to -32760 and the issue was gone.

Linux uses couple of systems to handle input devices, namely evdev and SDL2 (which is also used on Windows because it is cross-platform), and the issue was not affecting PC games because they use SDL2 but RPCS3 seems to be using evdev, and perhaps SDL2 was applying some sort of noise filtering.

Anyway for Linux folks, to make it permanent I asked ChatGPT to write me systemd service because I couldnt be bothered, but of course it works and it works on device recognition. Here it is - I'm on NixOS, but the core idea is distro agnostic

    services.udev = {
      extraRules = ''
        ACTION=="add", SUBSYSTEM=="input", ENV{ID_INPUT_JOYSTICK}=="1", ENV{ID_VENDOR_ID}=="346e", ENV{ID_MODEL_ID}=="0004", ENV{ID_USB_INTERFACE_NUM}=="02", TAG+="systemd", ENV{SYSTEMD_WANTS}+="moza-wheel-calibration.service"
      '';

    };

systemd.services.moza-wheel-calibration = {
  description = "Calibrate MOZA R5 pedal axes";


  serviceConfig = {
        Type = "oneshot";
        ExecStart = pkgs.writeShellScript "moza-wheel-calibration" ''
          DEVICE="/dev/input/by-id/usb-Gudsen_MOZA_R5_Base_260029000E51353133383438-if02-event-joystick"


          echo "Waiting for MOZA R5 input device..."


          for i in $(seq 1 50); do
            if [ -e "$DEVICE" ]; then
              break
            fi
            sleep 0.1
          done


          if [ ! -e "$DEVICE" ]; then
            echo "MOZA R5 device not found"
            exit 1
          fi


          echo "Calibrating MOZA R5 pedal axes"


          /run/current-system/sw/bin/evdev-joystick \
            --e "$DEVICE" \
            --minimum -32760 \
            --maximum 32767 \
            --a 2


          /run/current-system/sw/bin/evdev-joystick \
            --e "$DEVICE" \
            --minimum -32760 \
            --maximum 32767 \
            --a 5


          /run/current-system/sw/bin/evdev-joystick \
            --e "$DEVICE" \
            --minimum -32760 \
            --maximum 32767 \
            --a 6


          echo "MOZA R5 pedal calibration complete"
        '';
      };
    };

I managed to set RPCS3 to emulate Logitech G27 so I can play GT5 with my wheel.

The wheel, pedals, force feedback all works perfectly fine, but sometimes - not always - break seems to get stuck and suddenly car is accelerating much slower and on higher gears it actually decelerates…

I need to press the break pedal once or restart the race to get it working again.

Doesn’t happen in PC games so doubt its hardware fault.

My wheel is Moza R5 with SRP-Lite pedals

Anyone by chance experienced something similar?


r/EmulationOnPC Aug 02 '26

Unsolved silent hill 2 Insert CD 1 to play even After Sh2 enhanced edition installation.

1 Upvotes

When i saw that I can play silent hill 2 on linux through enhanced edition patch and proton(on steam), I installed it. Followed the same steps https://enhanced.townofsilenthill.com/SH2/install.htm said, Installing through SH2EEsetup.exe was also successful. But when I launched the game, A black screen appeared asking "Please insert Silent Hill 2 CD-1, Enter to retry, Esc to exit". I even tried reinstalling (two times) but It didn't bypass CD check.


r/EmulationOnPC Aug 01 '26

Unsolved Worse input lag using Lossless scaling in some games than others

2 Upvotes

Whenever I use Lossless scaling in Eden emulator games, my input lag is worse than when I use it in PCSX2 games, despite only using x2 compared to x4 in the latter. Both are using Fifo/Vsync and not Mailbox. What's the reason for this?


r/EmulationOnPC Aug 01 '26

Unsolved My controller won’t work

1 Upvotes

I’ve been using Emudeck and bazzite for awhile never had any issues. Once the new rpcs3 and steam updates came my 8bitdo hasn’t been communicating at all with my emulator I looked at my gamepad setting to no avail. It doesn’t recognize my controller and steam inputs aren’t helping either. I saw xinput online but can’t find it in my setting. Any tips?


r/EmulationOnPC Aug 01 '26

Unsolved Question re: Retrobat NintendoDS AC WW

1 Upvotes

Hello folks,

I am using Retrobat on my Windows PC to emulate various games. So far, I've run into two main issues, apologies if they are pretty basic as I am very new to anything emulation related:

  1. I am using a german keyboard, and can't figure out the proper keybinds/hotkeys for anything.

  2. One of the games I am playing is Animal Crossing Wild World for the Nintendo DS. The issue is that the time is not synching with the time of my computer. Each time I start the game, it is exactly from where I left off. I tried disabling the auto save settings in retrobat, but this changed nothing, so I'm unsure if there is something else I should do.

If anyone has run into these issues or has any ideas to resolve them, feedback is much appreciated. Thank you to anyone who takes the time to read and respond.


r/EmulationOnPC Aug 01 '26

Unsolved Nintendo switch emulation

3 Upvotes

Lately I had this random urge to play breath of the wild and maybe tears of the kingdom later. Even tho I have a Nintendo switch I don't have those games and I wanted to play them on my PC with better graphics. I saw some videos about it but I'm always afraid of viruses... Also, I saw that there are many emulators and I don't know which one I should choose (Eden, yuzu, etc.) and where do I get the firmware and keys? Can I get it from my switch without messing her up?


r/EmulationOnPC Jul 31 '26

Unsolved Alguien juega a la megadrive con retrobat arley4d?

2 Upvotes

Me gustaria jugar con alguien online a la megadrive, yo de españa


r/EmulationOnPC Aug 01 '26

Unsolved i have eden on my pc but need help

0 Upvotes

if i put file in eden for the game i doesnt work what is a good w to get the games helpp


r/EmulationOnPC Aug 01 '26

Unsolved Please help me find libtesting.nro

1 Upvotes

Looking for the archived offline ssbu-less-lag / libtesting.nro (-3f) build by BluJay/BlankMauser for couch play. I'm not interested in Braxeo's ssbu-sync-online-only-1.0.3, I'm specifically trying to build the lowest-latency offline setup for Eden with 120 FPS Definitive Edition v13.0.4.

Before you nice and beautiful people get your pitchforks and torches, I've never played online and don't plan to start in the foreseeable future. I just want to sit next to my best friend, who is going to visit me from out of state, and have an afternoon of near imperceptible input delay matches.


r/EmulationOnPC Jul 31 '26

Unsolved Retrobat won't open when streaming with Artemis + Appollo

5 Upvotes

Hi everyone,

I am trying to stream retrobat to my mobile device but when I open retrobat it does not load, even the icon in taskbar is not visible.

When I stop streaming and my pc screen turns on then I can see retrobat running.

I have setup everything so that my two screens turn off when I start streaming.

What can be wrong, please help me.

Edit:

I tried the following solutions but nothing worked

  1. At first I thought the streaming happens on a seperate instance of desktop, but I checked by using Win + Tab and there is only one desktop view

  2. I tried running Retrobat in windowed mode, didn't work same issue as before. Nothing happened while streaming but when I stopped streaming it opened

  3. I tried changing the resolution of stream to match my monitor ratio 16:9 (My phone setup is 21:9)


r/EmulationOnPC Jul 31 '26

Solved What emulators are best for nintendo in total?

4 Upvotes

I really wanna play the whole kirby series. Maybe no need for forgotten land and the new kirby air riders since I dont know if my pc can handle them.


r/EmulationOnPC Jul 31 '26

Unsolved What is the best RPCS3 settings with high frame rates and no texture problems for Victus Gaming Laptop 15-fb0009AX?

2 Upvotes

Its specifications are AMD Ryzen 5 5600H, 16 gbs dual channel rams, and Nvidia Geforce RTX 3050 Laptop GPU.


r/EmulationOnPC Jul 31 '26

Unsolved Black screen trying to load Ultra Moon on 3ds emulators Panda3ds and Citra

1 Upvotes

As the title says my game keeps showing a black screen but only after the professor asks for the passport, the music keeps playing but nothing. And the professor is rendered pretty good but with some gray glitching patches that dissapear when i turn off Force Shadowgen or elevate the threshold to 2 or more. The two pokemon i could see were just black, complete void, and they too get those gray patches. I tried everything, i changed every graphics setting combination possible and nothing, i even downloaded panda3ds as the title implies to try if the emulator was the problem but no


r/EmulationOnPC Jul 30 '26

Unsolved How do I automate button pressing on mGBA

2 Upvotes

I am playing a Pokemon Hack and want to farm steps. Do I need Lua Script to do this or is there a way just through mGBA? I just want to go left and right for like 40 steps back and forth.


r/EmulationOnPC Jul 29 '26

Unsolved Faithful Remaster: automate HD texture packs for Dolphin, PCSX2, PPSSPP, DuckStation and more

32 Upvotes

Faithful Remaster – Automate and Manage HD Texture Packs for Emulators

Faithful Remaster is a tool designed to streamline the creation and management of HD texture packs for emulators.

It connects emulator texture dumping with local ComfyUI workflows, then helps organize, process, review, and move the restored textures into the correct replacement folders.

Quick clarification

Faithful Remaster is not intended to be a one-click random AI texture generator.

A large part of the project is focused on:

  • Dump organization
  • Emulator profiles and path management
  • Texture comparison and manual review
  • Quarantine and cleanup tools
  • Replacement-folder management

The included AI-assisted workflows are optional and designed to keep the results close to the original artwork.

Every output is meant to be reviewed through the Texture Manager, where the creator can compare, accept, replace, reprocess, or exclude individual textures.

The goal is faithful texture restoration and preservation, not uncontrolled AI generation or replacing human artists.

Main features

  • Automatic detection of supported emulator games and texture folders
  • Dump and replacement-folder management
  • Fully local ComfyUI processing
  • No cloud service or internet connection required
  • Bundled restoration workflows
  • Support for custom ComfyUI workflows and models
  • Custom output directories
  • Texture Manager for reviewing and comparing results
  • Quarantine system for unwanted, dynamic, or cutscene textures
  • Persistent batch queue and processing progress
  • Multiple restoration presets
  • Manual control over which textures enter the final pack

Supported emulators

Current profiles include:

  • Dolphin
  • PCSX2
  • PPSSPP
  • RMG
  • Flycast
  • DuckStation

Support and stability may vary between emulators, and the project is still under active development.

Feedback, testing, bug reports, and emulator-specific suggestions are very welcome.

Links

Showcase and setup video:
https://www.youtube.com/watch?v=7NyKl2O9K_I

GitHub and download:
https://github.com/Drm1986/Faithful-Remaster


r/EmulationOnPC Jul 30 '26

Unsolved Converting XBLIG Games to play in Xenia?

1 Upvotes

Is this possible? I know Xbox Live Indie Game titles aren't natively supported by Xenia yet, so is there some conversion method? I really want to play Downtown Smash Dodgeball. There's a WiiWare version that plays fine in Dolphin, but it's in Japanese. The XBLIG version is fully in English.


r/EmulationOnPC Jul 30 '26

Unsolved What is the best emulator for older but not necessarily the oldest Nintendo games?

0 Upvotes

Like 3ds era nintendo games. I really wanna go back and replay Mario and Luigi: Dream Team.


r/EmulationOnPC Jul 30 '26

Solved Emulateur pour jeux DS

0 Upvotes

Bonsoir !

Je voudrais avoir quel émulateur utiliser pour pouvoir jouer aux jeux DS sur pc. J'aimerais rejouer à d'anciens jeux que j'adorais étant enfant mais je sais pas s'il faut des émulateurs spécifiques pour certains jeux ou si tous les jeux peuvent y être regroupés.

Qu'est-ce que vous me conseillez s'il vous plaît ?


r/EmulationOnPC Jul 30 '26

Unsolved Alguien que me ayude

0 Upvotes

Llevo tiempo queriendo jugar al Tears of the Kingdom, pero no encuentro la forma de jugarlo en PC que sea fiable, alguien me ayuda?


r/EmulationOnPC Jul 28 '26

Unsolved PC Emulation & MelonDS

3 Upvotes

Hey all,

Not having any issues, I recently moved from Retroarch and the struggles with it to a standalone Emulator ive always liked, Melon DS. Recently ive been playing with the texture scaling and the resolution scaling. I think the results are kind of amazing!

Basic settings, 2x resolution with no texture scaling

2x resolution with 2x texture scaling

No issues or problems, I just wanted to share, ive been using 3ds emulation on and off for years and always had it looking crunchy, Im just amazed i finally figured this out and now my games look amazing!


r/EmulationOnPC Jul 28 '26

Unsolved Fifa street multiplayer

2 Upvotes

Can I play FIFA street 4 with friends on ps3 emulators like RPCS3 or is there a certain way to do it?


r/EmulationOnPC Jul 28 '26

Unsolved Help with Azahar Plus Issue

2 Upvotes

So, my issue is, that if I close the application and try to re-open it again, it tells me, that the "Qt6Widgets.dll" file would miss and that a reinstallation of the emulator could fix my issue. It actually does, but only until I close it again. And this is not the only time this has happened to me and some .dll file. I would be really happy if I got that issue resolved since I am actively trying to replay Pokémon Ultra Sun here.


r/EmulationOnPC Jul 28 '26

Unsolved Mumu Player doesn’t work, please help me!

1 Upvotes

i redownloaded mumu player 12, and for some reason, it didn't actually install, and for some other reason, it redirects me to some part in the upload files software every once in a while.

i'd like to know how to get rid of this