Aloshi / EmulationStation

A flexible emulator front-end supporting keyboardless navigation and custom system themes.
MIT License
2.08k stars 905 forks source link

Start End Tags Mismatch #280

Closed michnfish closed 10 years ago

michnfish commented 10 years ago

Can someone please look at this and help a newbie out. I've gotten this far with help, but I must have something wrong in my es_systems.cfg file. Here is the error: mame@mame-Nobilis:~$ emulationstation lvl0: Could not parse es_systems.cfg file! lvl0: Start-end tags mismatch lvl0: Error while parsing systems configuration file! mame@mame-Nobilis:~$

Here is the CFG file:

arcade ArcadeGames /usr/local/share/games/mame/roms .zip mame %BASENAME% arcade mame

Thanks, Jason

nilsbyte commented 10 years ago

http://emulationstation.org/gettingstarted.html#config

Look at the part with the 'The es_systems.cfg file' headline. That's how the file has to look. You forgot all the tags.

<systemList>
    <system>
        <name>arcade</name>
        <fullname>MAME</fullname>
        <path>/usr/local/share/games/mame/roms</path>
        <extension>.zip .ZIP</extension>
        <command>mame %BASENAME%</command>
        <platform>arcade</platform>
        <theme>mame</theme>
    </system>
</systemList>