• Bit confused with the hotkey combination

    25
    0 Votes
    25 Posts
    7k Views
    C

    @busywait Good thinking, i have aksed and will put answer here when i get one, just in case it helps anyone else out in future

  • Changing profile avatar / image

    9
    1 Votes
    9 Posts
    1k Views
    busywaitB

    @buzz said in Changing profile avatar / image:

    I have removed limits for user info, and the timelimit for post editing for new users.

    Thank you!

    @buzz said in Changing profile avatar / image:

    Sometimes saying thanks is enough to please an old developer :-)

    ;)

  • Changing platform default systems

    3
    0 Votes
    3 Posts
    219 Views
    mviarsM

    @mitu Yeah that was it. I just couldnt remember how to reload the emulators but. Forgot they are labeled packages or something like that. Thanks mitu!

  • Video Scaling in Emulator

    7
    0 Votes
    7 Posts
    2k Views
    cnotoC

    @mitu This was helpful. I think I have solved the issue! Thanks

  • Arcade Up

    7
    0 Votes
    7 Posts
    467 Views
    C

    @mitu Thanks, I was hoping there was a way to just do a factory reset tp put all the settings back. I assume my son clicked something or changed a setting. Or worst case do an update via an SD card.

  • RetroPie Wolf3d folder can not hide in Ports?

    6
    0 Votes
    6 Posts
    1k Views
    mituM

    @soulrider911 said in RetroPie Wolf3d folder can not hide in Ports?:

    as my other builds I did no have to do this.

    On a stock RetroPie installation, this shouldn't be a problem. Post your es_systems.cfg on pastebin.com and we can see if the issue stems from there.

  • RPI 3b - which version recommend?

    Moved
    6
    0 Votes
    6 Posts
    1k Views
    retropieuser555R

    @frank-0 the original pi3b is slightly slower than the pi3b+ but on my older pi3b I managed to get the CP System III games working on fbneo. That emulator was built with the capcom games in mind I believe.

    Also pro tip, of you're playing street fight 3 2nd impact play it in wide-screen! One of the few arcade games that has that ability natively.

  • Satellaview multi-week games and SRAM

    4
    0 Votes
    4 Posts
    1k Views
    ectoE

    @joelkolb Wow! Thanks for the really detailed explanation!

  • 0 Votes
    2 Posts
    686 Views
    DannoD

    @whoremoan I believe your post describes an issue I have also been struggling with for some time, but recently made some headway in diagnosing. One thing, though - you included ADVMAME in your list...I haven't encountered the problem with that emulator, but have with the Libretro emulators (LR-MAME2003, etc).

    There have been some issues reported in GitHub for Retroarch describing this same problem. For example, see https://github.com/libretro/RetroArch/issues/10780. There is a fix available (https://github.com/libretro/RetroArch/pull/11471) which is not yet available in Retropie, but will probably make it in fairly soon.

    In the mean time, one thing you can try (again, this would only be for the Libretro emulators) is to enable the "Game Focus" after entering a game, which usually defaults to the Scroll Lock key (yes, a keyboard would be needed, though I believe you can remap the key within the Retroarch on-screen menus).

    EDIT: Though enabling Game Focus can be used as a workaround, after further testing / playing I discovered that using the "Grab Mouse Toggle" instead is often all that is needed (Game Focus locks down keyboard inputs, which may be too restrictive depending on the hardware). The Grab Mouse Toggle defaults to F11 (+ hotkey), but can be redefined in the retroarch.cfg file (input_grab_mouse_toggle = "j", is what I'm using). Grab Mouse does what it advertises, and makes the OS mouse pointer 'disappear' and not interfere with the game's mouse pointer.

  • 0 Votes
    1 Posts
    325 Views
    No one has replied
  • 0 Votes
    2 Posts
    772 Views
    ectoE

    @escc1986 said in Lightgun Question : How To Use Duel Wiimotes with Dolphenbar ?:

    My Question is Could you use 2 Dolphen bars and use 2 wiimotes to play 2 player ligh gun games on the pi4 ... if so does any one know how to do it ?

    I've never tried (I only have one bar) but I think that's how it is supposed to work. I suppose you use the bar in mode 2? This mode only supports one connected Wiimote. :(

    or Could you use 2 wii motes on 1 bar ?

    This would work in mode 4, right? This mode is used for the dolphin emulator, and I think it doesn't work with Retropie without proper drivers.

    There is a link I found recently, where someone made a high-precision Wiimote "driver" that works with 4 IR LEDs around the TV set. I suppose that this works a little like the Sinden Gun, but I have not come around to try this. Maybe if you have the time and dedication you could try this. Maybe it even works with multipe Wiimotes, I don't know?!

    Theory : im thinking but not certain , but maby i can have/enable duel mouse then it could work possibly ... but how do you enable duel mouse on retroarch on pi4 ?
    for mame2003 games

    As I said, I have never tried this. Maybe you can in a fist step try getting it to work with one Dolphin Bar (in mode 2) and a regular mouse?

  • Sega CD retroarch.cfg file is almost empty

    9
    0 Votes
    9 Posts
    1k Views
    C

    @dankcushions and @mitu I deleted my roms, and uploaded them using a USB drive creating a retropie directory, and everything is working now. I'm not sure what the difference between using SFTP and the USB drive is, but it's working now. Thank you for your help, and have a great day!

  • Unknown Platform

    4
    0 Votes
    4 Posts
    295 Views
    S

    Hello
    What was the fix that you came up with. I'm getting the same error.

  • 4 player question.

    2
    0 Votes
    2 Posts
    450 Views
    IanDaemonI

    @lootchamoneytho I believe so, however it's how each game is setup . In the "mame tab menu" there is often (not always) an option (dip switch) to control the coin slots.

  • 0 Votes
    3 Posts
    662 Views
    J

    @neurocrash
    I have the same problem with segmentation fault while running atari emulator.
    I wrote two scripts:
    1 - /home/pi/joyoffon.sh - turn off, wait 30 seconds, turn on controller
    1-1.5 - this is my controller listed by lsusb -t

    sudo echo '1-1.5' | sudo tee /sys/bus/usb/drivers/usb/unbind sleep 30 sudo echo '1-1.5' | sudo tee /sys/bus/usb/drivers/usb/bind

    2 - /opt/retropie/configs/all/runcommand-onstart.sh
    run joyoffon.sh only for atari emulator

    echo "runcommand-onstart.sh" >&2 echo $1 >&2 if [[ $1 == *"atari"* ]]; then echo "This is atari - run script" >&2 /home/pi/joyoffon.sh & fi

    After running atari game I have to wait until controller message appears.

  • Using Amiberry Emulator

    6
    0 Votes
    6 Posts
    497 Views
    DreamcastKidD

    @chris3535 said in Using Amiberry Emulator:

    @dreamcastkid opppsss !!! sorry lol

    you're pretty close .. you forgot the "p" in Raspberry

    but at least it's better than the 1st typo ;)

  • Permission denied error copying some files from Windows

    4
    0 Votes
    4 Posts
    717 Views
    L

    @mitu
    No, it's not related to the build, it happens with vanilla retropie and vanilla raspberry os too.
    One ugly workaround I found is copying the files to a fat32 system and back to ntfs on my Windows PC before copying them over via Samba.
    The intermediary fat32 step gets rid of any permission issue they have.

  • Override not applying properly

    6
    0 Votes
    6 Posts
    925 Views
    dankcushionsD

    @zodiark12 that's right. the retroarch menu could definitely be more intuitive in this regard but yes there's unobvious demarcation between options for the emulator core itself, and those of wider retroarch.

  • Boot Screen Normal?

    6
    0 Votes
    6 Posts
    700 Views
    A

    @clemsonteg It's been some time, but I found this post while trying to figure out how to hide the bootloader myself. For reference, I found the answer at RaspberryPi.org and set my DISABLE_HDMI=1 in order to prevent the display.

    Noted in the URL above, this has only been an issue since the 2020-09-03 release of RPi OS as the behavior was changed to disregard the disable_splash flag. Hopefully this helps you out!

  • Hello New here please help

    6
    0 Votes
    6 Posts
    816 Views
    mituM

    @ryan said in Hello New here please help:

    I am making an arcade with a IPAC2. How can I set up a two-player system once I'm on retropie? Thanks.

    https://retropie.org.uk/docs/Keyboard-Controllers/#configuration-example-ipac

Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.