• Mapping controllers with Joy2key

    11
    0 Votes
    11 Posts
    5k Views
    C

    maybe there is a more pratical solution.

    is possible to set a combo of joystick buttons for opening the RGUI?

    I was trying putting this:
    input_menu_toggle = "L2+R2+L1+R1"

    but apparently is not working

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    19 Views
    No one has replied
  • Nespicase+ led not functionnal ?

    8
    0 Votes
    8 Posts
    3k Views
    C

    @cyperghost Excellent ! And thanks, I'll try it :)

  • Need help, launching games failed

    4
    0 Votes
    4 Posts
    567 Views
    D

    thank you Mitu you were right...issue solved :)
    next step, scaping time..

    thank you

  • 0 Votes
    10 Posts
    4k Views
    J

    @mediamogul aah thanks, I need to install stella

  • MAME 2010/ Vapor TRX

    12
    0 Votes
    12 Posts
    1k Views
    I

    @mitu huh. well that's kind of dissapointing, but you're right, I can't seem to make it function smoothly on a PC even. It's odd a game from the late 90s can't function on more advanced hardware. Thanks for your help!!

  • Curved crt shader in the main menu?

    2
    0 Votes
    2 Posts
    666 Views
    mituM

    @trekdrop It's not possible at the moment. The shaders are only available in RetroArch, so they're applied when a game starts.

  • 0 Votes
    6 Posts
    2k Views
    simpleethatS

    @denzilla try scraping again but selecting megadrive instead. disregard the fact the Genesis folder exists at all.

  • Kintaro Super Kuma 9000 Power switch problem

    4
    0 Votes
    4 Posts
    2k Views
  • I would like a Mod to delete my thread that got me banned..

    Locked
    12
    -2 Votes
    12 Posts
    629 Views
    mediamogulM

    @timmyp

    You've made your case and your request is up for review. In the mean time, I'm banning your new account for the same reasons as your old one and locking the thread. If we need to communicate further, an admin will either temporarily lift the ban or contact you directly.

  • Ayuda! Raspbian GNU/Linux 9 retropie tty1

    2
    0 Votes
    2 Posts
    3k Views
    m2306M

    @frodriguez puedes usar google translate para traducir tus preguntas y también las respuestas.

    También quiero eliminar el inicio de sesión con contraseña. No puedo probar ahora porque tuve que desarmar la caja que estoy construyendo, pero hice esta nota cuando alguien más hizo la misma pregunta antes:

    Autologin:

    at command prompt, type sudo raspi-config select option 3 in menu (Boot Options) select option B1 (Desktopp/CLI) select option B2 (Console Autologin)
    Then Ok, exit all the way and restart.

    pruébalo y dime si funciona.

  • 0 Votes
    1 Posts
    318 Views
    No one has replied
  • Controller doesn't work in some ps1 games..

    1
    0 Votes
    1 Posts
    398 Views
    No one has replied
  • Marquees in the wheel instead of text.

    5
    0 Votes
    5 Posts
    2k Views
    UDb23U

    @mitu NIce, thanks!

  • Metadata for ROM parent folder

    5
    0 Votes
    5 Posts
    1k Views
    A

    I see.

    Not that it's a big deal for me now, because my Folder Metadata generation script seems to force ES to display the folder properly, but in future it would be nice for a way to disable that via settings or something...

    Here is the updated Python Code. This works for me only because:

    I generated the folder names based off the ROM names (stripping them of the region suffix tags etc)

    Have already moved all the ROMS into their respective folder.

    Folder metadata will only be applied if the ROM it contains already has been scraped

    #Code Start import xml.etree.ElementTree as ET from xml.etree.ElementTree import Element from xml.etree.ElementTree import ElementTree tree = ET.parse('gamelist.xml') root = tree.getroot() subPathGames = [] def makefolder(element): print("Folder Metadata Not Found for ", element, "-> making folder") folder_created = False for game in root.findall('game'): for path in game.findall('path'): if all([element == path.text.split('/')[1], folder_created == False]): #print ("Game Data" , game.tostring(xml).decode()) #Construct with this indexes data folder_tag = ET.Element("folder") name_tag = ET.Element("name") name_tag.text = path.text.split('/')[1].strip() folder_tag.append(name_tag) image_tag = ET.Element("image") if game.find('image') == None: print("img not found") else: image_tag.text = game.find('image').text folder_tag.append(image_tag) desc_tag = ET.Element("desc") if game.find('desc') == None: print("desc not found") else: desc_tag.text = game.find('desc').text folder_tag.append(desc_tag) rating_tag = ET.Element("rating") if game.find('rating') == None: print("rating not found") else: rating_tag.text = game.find('rating').text folder_tag.append(rating_tag) releasedate_tag = ET.Element("releasedate") if game.find('releasedate') == None: print("release date not found") else: releasedate_tag.text = game.find('releasedate').text folder_tag.append(releasedate_tag) developer_tag = ET.Element("developer") if game.find('developer') == None: print("dev date not found") else: developer_tag.text = game.find('developer').text folder_tag.append(developer_tag) publisher_tag = ET.Element("publisher") if game.find('publisher') == None: print("pub date not found") else: publisher_tag.text = game.find('publisher').text folder_tag.append(publisher_tag) genre_tag = ET.Element("genre") if game.find('genre') == None: print("genre not found") else: genre_tag.text = game.find('genre').text folder_tag.append(genre_tag) players_tag = ET.Element("players") if game.find('players') == None: print("players not found") else: players_tag.text = game.find('players').text folder_tag.append(players_tag) path_tag = ET.Element("path") path_tag.text = "./" + path.text.split('/')[1].strip() folder_tag.append(path_tag) root.append(folder_tag) folder_created = True return for game in root.findall('game'): for path in game.findall('path'): if path.text.count('/') > 1: subPathGames.append(path.text.split('/')[1]) else: continue #de-duplicate subPathGames = list(set(subPathGames)) print("Unique List of Games in Subfolder:\n", subPathGames) for element in subPathGames: #no folder elements at all! lets start one! if root.findall('folder') == None: print("Creating first folder metadata in gamelist.xml") makefolder(element) continue else: exists = False for folder in root.findall('folder'): #print("ELEMENT: " ,element, " NAME: ", folder.find('name').text) if element == folder.find('name').text: print ("Folder Already Exists! Next Question! Faster!") exists = True break if not exists: makefolder(element) print ("All folders made - now writing to file") new_root = ElementTree(root) new_root.write("gamelist-new.xml") #Code End

    I suppose can be run straight from the Pi if Python is installed. or else just use WinSCP to transfer, modify and return the gamelist.xml file as normal.

  • 0 Votes
    12 Posts
    4k Views
    A

    @mitu Thank you man it works i Just install a bios file and put it in bios folder and both of them works very good.

  • Does this part exist?

    11
    0 Votes
    11 Posts
    2k Views
    K

    Does anyone know the type of connection on the wires in my first photo please?

  • I'm stuck ....messed up not sure what to do

    5
    0 Votes
    5 Posts
    794 Views
    mituM

    @andrew2010 Re-flash the image downloaded on the SD-card.

  • 0 Votes
    2 Posts
    1k Views
    mediamogulM

    @melbmatt50

    We need more information on your setup. The required information is outlined at https://retropie.org.uk/forum/topic/3/read-this-first.

  • No audio only in menu

    2
    0 Votes
    2 Posts
    350 Views
    mediamogulM

    @blackhat1

    We need more information on your setup. The required information is outlined at https://retropie.org.uk/forum/topic/3/read-this-first.

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.