├── .gitignore ├── 3do ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── 3ds ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── README.md ├── _inc ├── assets │ ├── a-button.png │ ├── b-button.png │ ├── backTxt.png │ ├── background.png │ ├── black │ │ ├── background.png │ │ ├── boxDetailOverlay.png │ │ ├── detailed.png │ │ ├── gridoverlay.png │ │ ├── menuBar.png │ │ ├── overlay.png │ │ └── tileoverlay.png │ ├── blank.svg │ ├── boxDetailOverlay.png │ ├── dark │ │ ├── background.png │ │ ├── boxDetailOverlay.png │ │ ├── detailed.png │ │ ├── gridoverlay.png │ │ ├── overlay.png │ │ ├── splashbg.png │ │ └── tileoverlay.png │ ├── darkscanlines.png │ ├── defaultbg.png │ ├── detailboxhelp.svg │ ├── detailed.png │ ├── detailhelp.svg │ ├── dividers.svg │ ├── gridhelp.svg │ ├── gridoverlay.png │ ├── marker.png │ ├── markeroverlay.png │ ├── menuBar.png │ ├── meta-date.svg │ ├── meta-genre.svg │ ├── meta-players.svg │ ├── meta-publisher.svg │ ├── noArt.svg │ ├── overlay.png │ ├── progressbar.png │ ├── progressbarbg.png │ ├── progressbg.png │ ├── scanlines.png │ ├── select.svg │ ├── selectTxt.png │ ├── splashbg.png │ ├── splashloading.png │ ├── splashlogo.svg │ ├── syshelp.svg │ ├── syslogoBG.png │ ├── tilehelp.svg │ ├── tileoverlay.png │ ├── x-button.png │ └── y-button.png ├── fonts │ ├── RedHatDisplay-Bold.ttf │ ├── RedHatDisplay-Medium.ttf │ └── RedHatDisplay-Regular.ttf ├── gamepad.svg ├── gun.svg ├── icons │ ├── batocera.svg │ └── blank.svg ├── images │ ├── default_grid.png │ ├── favorite.svg │ └── star_filled.svg ├── screenshot │ ├── Boxes+Info.png │ ├── Boxes.png │ ├── Detailed Boxart.png │ ├── Detailed.png │ ├── Grid.png │ ├── Main menu.png │ └── Tiles.png ├── sound │ ├── cursor.wav │ └── slide.wav └── system │ ├── blackmode.xml │ ├── buttons │ ├── black │ │ ├── a-button.png │ │ ├── b-button.png │ │ ├── x-button.png │ │ └── y-button.png │ ├── blue │ │ ├── a-button.png │ │ ├── b-button.png │ │ ├── x-button.png │ │ └── y-button.png │ ├── cyan │ │ ├── a-button.png │ │ ├── b-button.png │ │ ├── x-button.png │ │ └── y-button.png │ ├── green │ │ ├── a-button.png │ │ ├── b-button.png │ │ ├── x-button.png │ │ └── y-button.png │ ├── red │ │ ├── a-button.png │ │ ├── b-button.png │ │ ├── x-button.png │ │ └── y-button.png │ └── yellow │ │ ├── a-button.png │ │ ├── b-button.png │ │ ├── x-button.png │ │ └── y-button.png │ ├── darkmode.xml │ ├── hidenames.xml │ ├── overrides │ ├── cannonball.xml │ ├── flatpak.xml │ ├── imageviewer.xml │ ├── macintosh.xml │ ├── retrobat.xml │ └── sdlpop.xml │ ├── primary-a.xml │ ├── primary-b.xml │ ├── primary-x.xml │ ├── primary-y.xml │ ├── secondary-a.xml │ ├── secondary-b.xml │ ├── secondary-x.xml │ ├── secondary-y.xml │ └── storyboards.xml ├── acclaim ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── adam ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── advision ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── alphadenshi ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── amiga1200 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── amiga500 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── amigacd32 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── amigacdtv ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── amstradcpc ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── apfm1000 ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── apple2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── arcade ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── arcadia ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── astrocade ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atari ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── atari2600 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atari5200 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atari7800 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atari800 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atarijaguar ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atarilynx ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atarist ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atlus ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── atom ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── atomiswave ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── auto-adventure ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── auto-beatemup ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── auto-favorites ├── _inc │ ├── mainlogo.svg │ └── syslogo.svg └── theme.xml ├── auto-fight ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── auto-lightgun └── _inc │ └── bg.jpg ├── auto-platform ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── auto-racedriving ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── auto-roleplayings ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── auto-shootemup ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── auto-shooter ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── auto-sports ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── banpresto ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── bbcmicro ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── c128 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── c20 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── c64 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── cannonball ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── capcom ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── cave ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── cdi ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── channelf ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── colecovision ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── cplus4 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── cps1 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── cps2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── cps3 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── creativision ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── custom-collections ├── _inc │ ├── mainlogo.svg │ └── syslogo.svg └── theme.xml ├── daphne ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── dataeast ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── dreamcast ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo-eu.svg │ ├── mainlogo-jp.svg │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker-eu.png │ ├── marker-jp.png │ ├── marker-us.png │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo-jp.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── easyrpg ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── eighting ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── electron ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── exidy ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ └── syslogo.svg └── theme.xml ├── fbneo ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── fds ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── flatpak ├── _inc │ ├── mainlogo.svg │ └── syslogo.svg └── theme.xml ├── fm7 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── fmtowns ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gaelco ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gameandwatch ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gamegear ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG-eu.png │ ├── buttonBG-jp.png │ ├── buttonBG-us.png │ ├── buttonBG.png │ ├── mainlogo-eu.svg │ ├── mainlogo-jp.svg │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo-jp.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gamepock ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── gamesplash.xml ├── gb ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── gameboyOverlay.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gb2players ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── gameboyOverlay.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gba ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gbc ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gbc2players ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gc ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gottlieb ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gp32 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── gx4000 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── hikaru ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── igs ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── ikemen ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── imageviewer ├── _inc │ ├── mainlogo.svg │ └── syslogo.svg └── theme.xml ├── incredibletech ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── intellivision ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── iortcw ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── irem ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── jaleco ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── kaneko ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── konami ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── lcdgames ├── _inc │ ├── mainlogo.svg │ └── syslogo.svg └── theme.xml ├── lindbergh ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── mame ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── mastersystem ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo-jp.svg │ ├── mainlogo.svg │ ├── marker-jp.png │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-jp.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── megadrive ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG-eu.png │ ├── buttonBG-jp.png │ ├── buttonBG-us.png │ ├── buttonBG.png │ ├── mainlogo-eu.svg │ ├── mainlogo-jp.svg │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo-jp.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── midway ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── mitchell ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── model2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── model3 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── msu-md ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── msx ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── msx1 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── msx2+ ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── msx2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── msxturbor ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── n64 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── n64dd ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── namco ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── namco2x6 ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── naomi ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── naomi2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── nds ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── neogeo ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── listsystem.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── neogeocd ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── listsystem.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── nes ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── ngp ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── ngpc ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── nichibutsu ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── nintendo ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── nmk ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── odyssey2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo-eu.svg │ ├── mainlogo.svg │ ├── marker-eu.png │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── openbor ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── pc ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pc88 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pc98 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pce-cd ├── _inc │ ├── a-button-us.png │ ├── a-button.png │ ├── b-button-us.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG-jp.png │ ├── mainlogo-eu.svg │ ├── mainlogo-jp.svg │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker-us.png │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo-jp.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button-us.png │ ├── x-button.png │ ├── y-button-us.png │ └── y-button.png └── theme.xml ├── pcengine ├── _inc │ ├── a-button-us.png │ ├── a-button.png │ ├── b-button-us.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG-jp.png │ ├── listsystem.png │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker-us.png │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button-us.png │ ├── x-button.png │ ├── y-button-us.png │ └── y-button.png └── theme.xml ├── pcfx ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pet ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pico8 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── ports ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── ps2 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── ps3 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── ps4 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── psikyo ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── psp ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pspminis ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── psvita ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── psx ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── pygame ├── _inc │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── resources ├── busy_0.svg ├── busy_1.svg ├── busy_2.svg └── busy_3.svg ├── samcoupe ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── sammy ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── satellaview ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── saturn ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo-jp.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-jp.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── scummvm ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── scv ├── _inc │ ├── bg.jpg │ ├── mainlogo-jp.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo-jp.svg │ └── syslogo.svg └── theme.xml ├── sdlpop ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── sega ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── sega32x ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG-eu.png │ ├── buttonBG-jp.png │ ├── buttonBG-us.png │ ├── buttonBG.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── segacd ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG-eu.png │ ├── buttonBG-jp.png │ ├── buttonBG-us.png │ ├── buttonBG.png │ ├── mainlogo-jp.svg │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo-jp.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── segastv ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── seibukaihatsu ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── semicom ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── sg-1000 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── sgb ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── gameboyOverlay.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── snes-msu1 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── snes ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo-eu.svg │ ├── mainlogo-jp.svg │ ├── mainlogo-us.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-eu.svg │ ├── syslogo-jp.svg │ ├── syslogo-us.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── snk ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── solarus ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── spectravideo ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo-alt.svg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo-alt.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── splash.mp4 ├── splash.xml ├── steam ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── sufami ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── supergrafx ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── supervision ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── supracan ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── switch ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── taito ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── technos ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── tecmo ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── theme.xml ├── ti99 ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── tic80 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── toaplan ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── triforce ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── universal ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── vectrex ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── videopacplus ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── virtualboy ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── visco ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── vpinball ├── _inc │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ └── syslogo.svg └── theme.xml ├── vsc ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── wii ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── wiiu ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── windows ├── _inc │ ├── mainlogo.svg │ ├── marker.png │ └── syslogo.svg └── theme.xml ├── wonderswan ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── wonderswancolor ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── buttonBG.png │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── x1 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── x68000 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── xbox ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── xbox360 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── xegs ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml ├── zx81 ├── _inc │ ├── a-button.png │ ├── b-button.png │ ├── bg.jpg │ ├── mainlogo.svg │ ├── marker.png │ ├── meta-genre.svg │ ├── syslogo.svg │ ├── x-button.png │ └── y-button.png └── theme.xml └── zxspectrum ├── _inc ├── a-button.png ├── b-button.png ├── bg.jpg ├── mainlogo.svg ├── marker.png ├── meta-genre.svg ├── syslogo.svg ├── x-button.png └── y-button.png └── theme.xml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /3do/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/a-button.png -------------------------------------------------------------------------------- /3do/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/b-button.png -------------------------------------------------------------------------------- /3do/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/bg.jpg -------------------------------------------------------------------------------- /3do/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/mainlogo.svg -------------------------------------------------------------------------------- /3do/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/marker.png -------------------------------------------------------------------------------- /3do/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/meta-genre.svg -------------------------------------------------------------------------------- /3do/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/syslogo.svg -------------------------------------------------------------------------------- /3do/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/x-button.png -------------------------------------------------------------------------------- /3do/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/_inc/y-button.png -------------------------------------------------------------------------------- /3do/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3do/theme.xml -------------------------------------------------------------------------------- /3ds/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/a-button.png -------------------------------------------------------------------------------- /3ds/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/b-button.png -------------------------------------------------------------------------------- /3ds/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/bg.jpg -------------------------------------------------------------------------------- /3ds/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/mainlogo.svg -------------------------------------------------------------------------------- /3ds/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/marker.png -------------------------------------------------------------------------------- /3ds/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/meta-genre.svg -------------------------------------------------------------------------------- /3ds/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/syslogo.svg -------------------------------------------------------------------------------- /3ds/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/x-button.png -------------------------------------------------------------------------------- /3ds/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/_inc/y-button.png -------------------------------------------------------------------------------- /3ds/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/3ds/theme.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/README.md -------------------------------------------------------------------------------- /_inc/assets/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/a-button.png -------------------------------------------------------------------------------- /_inc/assets/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/b-button.png -------------------------------------------------------------------------------- /_inc/assets/backTxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/backTxt.png -------------------------------------------------------------------------------- /_inc/assets/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/blank.svg -------------------------------------------------------------------------------- /_inc/assets/defaultbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/defaultbg.png -------------------------------------------------------------------------------- /_inc/assets/detailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/detailed.png -------------------------------------------------------------------------------- /_inc/assets/dividers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/dividers.svg -------------------------------------------------------------------------------- /_inc/assets/gridhelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/gridhelp.svg -------------------------------------------------------------------------------- /_inc/assets/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/marker.png -------------------------------------------------------------------------------- /_inc/assets/menuBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/menuBar.png -------------------------------------------------------------------------------- /_inc/assets/meta-date.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/meta-date.svg -------------------------------------------------------------------------------- /_inc/assets/noArt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/noArt.svg -------------------------------------------------------------------------------- /_inc/assets/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/overlay.png -------------------------------------------------------------------------------- /_inc/assets/scanlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/scanlines.png -------------------------------------------------------------------------------- /_inc/assets/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/select.svg -------------------------------------------------------------------------------- /_inc/assets/selectTxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/selectTxt.png -------------------------------------------------------------------------------- /_inc/assets/splashbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/splashbg.png -------------------------------------------------------------------------------- /_inc/assets/syshelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/syshelp.svg -------------------------------------------------------------------------------- /_inc/assets/syslogoBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/syslogoBG.png -------------------------------------------------------------------------------- /_inc/assets/tilehelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/tilehelp.svg -------------------------------------------------------------------------------- /_inc/assets/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/x-button.png -------------------------------------------------------------------------------- /_inc/assets/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/assets/y-button.png -------------------------------------------------------------------------------- /_inc/gamepad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/gamepad.svg -------------------------------------------------------------------------------- /_inc/gun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/gun.svg -------------------------------------------------------------------------------- /_inc/icons/batocera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/icons/batocera.svg -------------------------------------------------------------------------------- /_inc/icons/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/icons/blank.svg -------------------------------------------------------------------------------- /_inc/images/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/images/favorite.svg -------------------------------------------------------------------------------- /_inc/screenshot/Boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/screenshot/Boxes.png -------------------------------------------------------------------------------- /_inc/screenshot/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/screenshot/Grid.png -------------------------------------------------------------------------------- /_inc/screenshot/Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/screenshot/Tiles.png -------------------------------------------------------------------------------- /_inc/sound/cursor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/sound/cursor.wav -------------------------------------------------------------------------------- /_inc/sound/slide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/sound/slide.wav -------------------------------------------------------------------------------- /_inc/system/blackmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/blackmode.xml -------------------------------------------------------------------------------- /_inc/system/darkmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/darkmode.xml -------------------------------------------------------------------------------- /_inc/system/hidenames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/hidenames.xml -------------------------------------------------------------------------------- /_inc/system/primary-a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/primary-a.xml -------------------------------------------------------------------------------- /_inc/system/primary-b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/primary-b.xml -------------------------------------------------------------------------------- /_inc/system/primary-x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/primary-x.xml -------------------------------------------------------------------------------- /_inc/system/primary-y.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/_inc/system/primary-y.xml -------------------------------------------------------------------------------- /acclaim/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/acclaim/_inc/bg.jpg -------------------------------------------------------------------------------- /acclaim/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/acclaim/_inc/mainlogo.svg -------------------------------------------------------------------------------- /acclaim/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/acclaim/_inc/marker.png -------------------------------------------------------------------------------- /acclaim/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/acclaim/_inc/syslogo.svg -------------------------------------------------------------------------------- /acclaim/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/acclaim/theme.xml -------------------------------------------------------------------------------- /adam/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/a-button.png -------------------------------------------------------------------------------- /adam/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/b-button.png -------------------------------------------------------------------------------- /adam/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/bg.jpg -------------------------------------------------------------------------------- /adam/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/mainlogo.svg -------------------------------------------------------------------------------- /adam/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/marker.png -------------------------------------------------------------------------------- /adam/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/meta-genre.svg -------------------------------------------------------------------------------- /adam/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/syslogo.svg -------------------------------------------------------------------------------- /adam/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/x-button.png -------------------------------------------------------------------------------- /adam/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/_inc/y-button.png -------------------------------------------------------------------------------- /adam/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/adam/theme.xml -------------------------------------------------------------------------------- /advision/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/advision/_inc/bg.jpg -------------------------------------------------------------------------------- /advision/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/advision/_inc/marker.png -------------------------------------------------------------------------------- /advision/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/advision/_inc/syslogo.svg -------------------------------------------------------------------------------- /advision/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/advision/theme.xml -------------------------------------------------------------------------------- /alphadenshi/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/alphadenshi/_inc/bg.jpg -------------------------------------------------------------------------------- /alphadenshi/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/alphadenshi/theme.xml -------------------------------------------------------------------------------- /amiga1200/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga1200/_inc/bg.jpg -------------------------------------------------------------------------------- /amiga1200/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga1200/_inc/marker.png -------------------------------------------------------------------------------- /amiga1200/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga1200/theme.xml -------------------------------------------------------------------------------- /amiga500/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga500/_inc/bg.jpg -------------------------------------------------------------------------------- /amiga500/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga500/_inc/marker.png -------------------------------------------------------------------------------- /amiga500/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga500/_inc/syslogo.svg -------------------------------------------------------------------------------- /amiga500/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amiga500/theme.xml -------------------------------------------------------------------------------- /amigacd32/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amigacd32/_inc/bg.jpg -------------------------------------------------------------------------------- /amigacd32/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amigacd32/_inc/marker.png -------------------------------------------------------------------------------- /amigacd32/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amigacd32/theme.xml -------------------------------------------------------------------------------- /amigacdtv/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amigacdtv/_inc/bg.jpg -------------------------------------------------------------------------------- /amigacdtv/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amigacdtv/_inc/marker.png -------------------------------------------------------------------------------- /amigacdtv/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amigacdtv/theme.xml -------------------------------------------------------------------------------- /amstradcpc/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amstradcpc/_inc/bg.jpg -------------------------------------------------------------------------------- /amstradcpc/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/amstradcpc/theme.xml -------------------------------------------------------------------------------- /apfm1000/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apfm1000/_inc/bg.jpg -------------------------------------------------------------------------------- /apfm1000/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apfm1000/_inc/marker.png -------------------------------------------------------------------------------- /apfm1000/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apfm1000/_inc/syslogo.svg -------------------------------------------------------------------------------- /apfm1000/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apfm1000/theme.xml -------------------------------------------------------------------------------- /apple2/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/a-button.png -------------------------------------------------------------------------------- /apple2/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/b-button.png -------------------------------------------------------------------------------- /apple2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/bg.jpg -------------------------------------------------------------------------------- /apple2/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/mainlogo.svg -------------------------------------------------------------------------------- /apple2/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/marker.png -------------------------------------------------------------------------------- /apple2/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/syslogo.svg -------------------------------------------------------------------------------- /apple2/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/x-button.png -------------------------------------------------------------------------------- /apple2/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/_inc/y-button.png -------------------------------------------------------------------------------- /apple2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/apple2/theme.xml -------------------------------------------------------------------------------- /arcade/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/a-button.png -------------------------------------------------------------------------------- /arcade/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/b-button.png -------------------------------------------------------------------------------- /arcade/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/bg.jpg -------------------------------------------------------------------------------- /arcade/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/mainlogo.svg -------------------------------------------------------------------------------- /arcade/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/marker.png -------------------------------------------------------------------------------- /arcade/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/syslogo.svg -------------------------------------------------------------------------------- /arcade/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/x-button.png -------------------------------------------------------------------------------- /arcade/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/_inc/y-button.png -------------------------------------------------------------------------------- /arcade/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcade/theme.xml -------------------------------------------------------------------------------- /arcadia/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcadia/_inc/bg.jpg -------------------------------------------------------------------------------- /arcadia/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcadia/_inc/mainlogo.svg -------------------------------------------------------------------------------- /arcadia/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcadia/_inc/marker.png -------------------------------------------------------------------------------- /arcadia/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcadia/_inc/syslogo.svg -------------------------------------------------------------------------------- /arcadia/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/arcadia/theme.xml -------------------------------------------------------------------------------- /astrocade/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/astrocade/_inc/bg.jpg -------------------------------------------------------------------------------- /astrocade/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/astrocade/_inc/marker.png -------------------------------------------------------------------------------- /astrocade/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/astrocade/theme.xml -------------------------------------------------------------------------------- /atari/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari/_inc/bg.jpg -------------------------------------------------------------------------------- /atari/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari/_inc/mainlogo.svg -------------------------------------------------------------------------------- /atari/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari/_inc/marker.png -------------------------------------------------------------------------------- /atari/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari/_inc/syslogo.svg -------------------------------------------------------------------------------- /atari/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari/theme.xml -------------------------------------------------------------------------------- /atari2600/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari2600/_inc/bg.jpg -------------------------------------------------------------------------------- /atari2600/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari2600/_inc/marker.png -------------------------------------------------------------------------------- /atari2600/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari2600/theme.xml -------------------------------------------------------------------------------- /atari5200/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari5200/_inc/bg.jpg -------------------------------------------------------------------------------- /atari5200/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari5200/_inc/marker.png -------------------------------------------------------------------------------- /atari5200/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari5200/theme.xml -------------------------------------------------------------------------------- /atari7800/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari7800/_inc/bg.jpg -------------------------------------------------------------------------------- /atari7800/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari7800/_inc/marker.png -------------------------------------------------------------------------------- /atari7800/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari7800/theme.xml -------------------------------------------------------------------------------- /atari800/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari800/_inc/bg.jpg -------------------------------------------------------------------------------- /atari800/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari800/_inc/marker.png -------------------------------------------------------------------------------- /atari800/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari800/_inc/syslogo.svg -------------------------------------------------------------------------------- /atari800/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atari800/theme.xml -------------------------------------------------------------------------------- /atarijaguar/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarijaguar/_inc/bg.jpg -------------------------------------------------------------------------------- /atarijaguar/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarijaguar/theme.xml -------------------------------------------------------------------------------- /atarilynx/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarilynx/_inc/bg.jpg -------------------------------------------------------------------------------- /atarilynx/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarilynx/_inc/marker.png -------------------------------------------------------------------------------- /atarilynx/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarilynx/theme.xml -------------------------------------------------------------------------------- /atarist/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/a-button.png -------------------------------------------------------------------------------- /atarist/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/b-button.png -------------------------------------------------------------------------------- /atarist/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/bg.jpg -------------------------------------------------------------------------------- /atarist/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/mainlogo.svg -------------------------------------------------------------------------------- /atarist/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/marker.png -------------------------------------------------------------------------------- /atarist/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/syslogo.svg -------------------------------------------------------------------------------- /atarist/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/x-button.png -------------------------------------------------------------------------------- /atarist/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/_inc/y-button.png -------------------------------------------------------------------------------- /atarist/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atarist/theme.xml -------------------------------------------------------------------------------- /atlus/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atlus/_inc/bg.jpg -------------------------------------------------------------------------------- /atlus/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atlus/_inc/mainlogo.svg -------------------------------------------------------------------------------- /atlus/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atlus/_inc/marker.png -------------------------------------------------------------------------------- /atlus/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atlus/_inc/syslogo.svg -------------------------------------------------------------------------------- /atlus/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atlus/theme.xml -------------------------------------------------------------------------------- /atom/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/a-button.png -------------------------------------------------------------------------------- /atom/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/b-button.png -------------------------------------------------------------------------------- /atom/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/bg.jpg -------------------------------------------------------------------------------- /atom/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/mainlogo.svg -------------------------------------------------------------------------------- /atom/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/marker.png -------------------------------------------------------------------------------- /atom/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/meta-genre.svg -------------------------------------------------------------------------------- /atom/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/syslogo.svg -------------------------------------------------------------------------------- /atom/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/x-button.png -------------------------------------------------------------------------------- /atom/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/_inc/y-button.png -------------------------------------------------------------------------------- /atom/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atom/theme.xml -------------------------------------------------------------------------------- /atomiswave/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atomiswave/_inc/bg.jpg -------------------------------------------------------------------------------- /atomiswave/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/atomiswave/theme.xml -------------------------------------------------------------------------------- /auto-adventure/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-adventure/theme.xml -------------------------------------------------------------------------------- /auto-beatemup/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-beatemup/_inc/bg.jpg -------------------------------------------------------------------------------- /auto-beatemup/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-beatemup/theme.xml -------------------------------------------------------------------------------- /auto-favorites/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-favorites/theme.xml -------------------------------------------------------------------------------- /auto-fight/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-fight/_inc/bg.jpg -------------------------------------------------------------------------------- /auto-fight/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-fight/theme.xml -------------------------------------------------------------------------------- /auto-lightgun/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-lightgun/_inc/bg.jpg -------------------------------------------------------------------------------- /auto-platform/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-platform/_inc/bg.jpg -------------------------------------------------------------------------------- /auto-platform/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-platform/theme.xml -------------------------------------------------------------------------------- /auto-shootemup/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-shootemup/theme.xml -------------------------------------------------------------------------------- /auto-shooter/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-shooter/_inc/bg.jpg -------------------------------------------------------------------------------- /auto-shooter/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-shooter/theme.xml -------------------------------------------------------------------------------- /auto-sports/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-sports/_inc/bg.jpg -------------------------------------------------------------------------------- /auto-sports/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/auto-sports/theme.xml -------------------------------------------------------------------------------- /banpresto/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/banpresto/_inc/bg.jpg -------------------------------------------------------------------------------- /banpresto/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/banpresto/_inc/marker.png -------------------------------------------------------------------------------- /banpresto/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/banpresto/theme.xml -------------------------------------------------------------------------------- /bbcmicro/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/bbcmicro/_inc/bg.jpg -------------------------------------------------------------------------------- /bbcmicro/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/bbcmicro/_inc/marker.png -------------------------------------------------------------------------------- /bbcmicro/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/bbcmicro/_inc/syslogo.svg -------------------------------------------------------------------------------- /bbcmicro/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/bbcmicro/theme.xml -------------------------------------------------------------------------------- /c128/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/a-button.png -------------------------------------------------------------------------------- /c128/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/b-button.png -------------------------------------------------------------------------------- /c128/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/bg.jpg -------------------------------------------------------------------------------- /c128/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/mainlogo.svg -------------------------------------------------------------------------------- /c128/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/marker.png -------------------------------------------------------------------------------- /c128/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/meta-genre.svg -------------------------------------------------------------------------------- /c128/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/syslogo.svg -------------------------------------------------------------------------------- /c128/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/x-button.png -------------------------------------------------------------------------------- /c128/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/_inc/y-button.png -------------------------------------------------------------------------------- /c128/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c128/theme.xml -------------------------------------------------------------------------------- /c20/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/a-button.png -------------------------------------------------------------------------------- /c20/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/b-button.png -------------------------------------------------------------------------------- /c20/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/bg.jpg -------------------------------------------------------------------------------- /c20/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/mainlogo.svg -------------------------------------------------------------------------------- /c20/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/marker.png -------------------------------------------------------------------------------- /c20/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/meta-genre.svg -------------------------------------------------------------------------------- /c20/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/syslogo.svg -------------------------------------------------------------------------------- /c20/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/x-button.png -------------------------------------------------------------------------------- /c20/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/_inc/y-button.png -------------------------------------------------------------------------------- /c20/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c20/theme.xml -------------------------------------------------------------------------------- /c64/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/a-button.png -------------------------------------------------------------------------------- /c64/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/b-button.png -------------------------------------------------------------------------------- /c64/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/bg.jpg -------------------------------------------------------------------------------- /c64/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/mainlogo.svg -------------------------------------------------------------------------------- /c64/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/marker.png -------------------------------------------------------------------------------- /c64/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/meta-genre.svg -------------------------------------------------------------------------------- /c64/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/syslogo.svg -------------------------------------------------------------------------------- /c64/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/x-button.png -------------------------------------------------------------------------------- /c64/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/_inc/y-button.png -------------------------------------------------------------------------------- /c64/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/c64/theme.xml -------------------------------------------------------------------------------- /cannonball/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cannonball/_inc/bg.jpg -------------------------------------------------------------------------------- /cannonball/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cannonball/theme.xml -------------------------------------------------------------------------------- /capcom/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/a-button.png -------------------------------------------------------------------------------- /capcom/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/b-button.png -------------------------------------------------------------------------------- /capcom/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/bg.jpg -------------------------------------------------------------------------------- /capcom/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/mainlogo.svg -------------------------------------------------------------------------------- /capcom/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/marker.png -------------------------------------------------------------------------------- /capcom/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/syslogo.svg -------------------------------------------------------------------------------- /capcom/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/x-button.png -------------------------------------------------------------------------------- /capcom/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/_inc/y-button.png -------------------------------------------------------------------------------- /capcom/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/capcom/theme.xml -------------------------------------------------------------------------------- /cave/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cave/_inc/bg.jpg -------------------------------------------------------------------------------- /cave/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cave/_inc/mainlogo.svg -------------------------------------------------------------------------------- /cave/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cave/_inc/marker.png -------------------------------------------------------------------------------- /cave/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cave/_inc/syslogo.svg -------------------------------------------------------------------------------- /cave/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cave/theme.xml -------------------------------------------------------------------------------- /cdi/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/a-button.png -------------------------------------------------------------------------------- /cdi/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/b-button.png -------------------------------------------------------------------------------- /cdi/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/bg.jpg -------------------------------------------------------------------------------- /cdi/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/mainlogo.svg -------------------------------------------------------------------------------- /cdi/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/marker.png -------------------------------------------------------------------------------- /cdi/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/meta-genre.svg -------------------------------------------------------------------------------- /cdi/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/syslogo.svg -------------------------------------------------------------------------------- /cdi/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/x-button.png -------------------------------------------------------------------------------- /cdi/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/_inc/y-button.png -------------------------------------------------------------------------------- /cdi/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cdi/theme.xml -------------------------------------------------------------------------------- /channelf/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/channelf/_inc/bg.jpg -------------------------------------------------------------------------------- /channelf/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/channelf/_inc/marker.png -------------------------------------------------------------------------------- /channelf/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/channelf/_inc/syslogo.svg -------------------------------------------------------------------------------- /channelf/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/channelf/theme.xml -------------------------------------------------------------------------------- /colecovision/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/colecovision/_inc/bg.jpg -------------------------------------------------------------------------------- /colecovision/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/colecovision/theme.xml -------------------------------------------------------------------------------- /cplus4/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/a-button.png -------------------------------------------------------------------------------- /cplus4/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/b-button.png -------------------------------------------------------------------------------- /cplus4/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/bg.jpg -------------------------------------------------------------------------------- /cplus4/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/mainlogo.svg -------------------------------------------------------------------------------- /cplus4/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/marker.png -------------------------------------------------------------------------------- /cplus4/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/syslogo.svg -------------------------------------------------------------------------------- /cplus4/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/x-button.png -------------------------------------------------------------------------------- /cplus4/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/_inc/y-button.png -------------------------------------------------------------------------------- /cplus4/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cplus4/theme.xml -------------------------------------------------------------------------------- /cps1/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/a-button.png -------------------------------------------------------------------------------- /cps1/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/b-button.png -------------------------------------------------------------------------------- /cps1/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/bg.jpg -------------------------------------------------------------------------------- /cps1/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/mainlogo.svg -------------------------------------------------------------------------------- /cps1/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/marker.png -------------------------------------------------------------------------------- /cps1/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/syslogo.svg -------------------------------------------------------------------------------- /cps1/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/x-button.png -------------------------------------------------------------------------------- /cps1/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/_inc/y-button.png -------------------------------------------------------------------------------- /cps1/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps1/theme.xml -------------------------------------------------------------------------------- /cps2/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/a-button.png -------------------------------------------------------------------------------- /cps2/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/b-button.png -------------------------------------------------------------------------------- /cps2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/bg.jpg -------------------------------------------------------------------------------- /cps2/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/mainlogo.svg -------------------------------------------------------------------------------- /cps2/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/marker.png -------------------------------------------------------------------------------- /cps2/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/syslogo.svg -------------------------------------------------------------------------------- /cps2/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/x-button.png -------------------------------------------------------------------------------- /cps2/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/_inc/y-button.png -------------------------------------------------------------------------------- /cps2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps2/theme.xml -------------------------------------------------------------------------------- /cps3/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/a-button.png -------------------------------------------------------------------------------- /cps3/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/b-button.png -------------------------------------------------------------------------------- /cps3/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/bg.jpg -------------------------------------------------------------------------------- /cps3/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/mainlogo.svg -------------------------------------------------------------------------------- /cps3/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/marker.png -------------------------------------------------------------------------------- /cps3/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/syslogo.svg -------------------------------------------------------------------------------- /cps3/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/x-button.png -------------------------------------------------------------------------------- /cps3/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/_inc/y-button.png -------------------------------------------------------------------------------- /cps3/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/cps3/theme.xml -------------------------------------------------------------------------------- /creativision/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/creativision/_inc/bg.jpg -------------------------------------------------------------------------------- /creativision/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/creativision/theme.xml -------------------------------------------------------------------------------- /daphne/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/daphne/_inc/bg.jpg -------------------------------------------------------------------------------- /daphne/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/daphne/_inc/mainlogo.svg -------------------------------------------------------------------------------- /daphne/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/daphne/_inc/marker.png -------------------------------------------------------------------------------- /daphne/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/daphne/_inc/syslogo.svg -------------------------------------------------------------------------------- /daphne/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/daphne/theme.xml -------------------------------------------------------------------------------- /dataeast/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dataeast/_inc/bg.jpg -------------------------------------------------------------------------------- /dataeast/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dataeast/_inc/marker.png -------------------------------------------------------------------------------- /dataeast/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dataeast/_inc/syslogo.svg -------------------------------------------------------------------------------- /dataeast/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dataeast/theme.xml -------------------------------------------------------------------------------- /dreamcast/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dreamcast/_inc/bg.jpg -------------------------------------------------------------------------------- /dreamcast/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dreamcast/_inc/marker.png -------------------------------------------------------------------------------- /dreamcast/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/dreamcast/theme.xml -------------------------------------------------------------------------------- /easyrpg/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/a-button.png -------------------------------------------------------------------------------- /easyrpg/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/b-button.png -------------------------------------------------------------------------------- /easyrpg/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/bg.jpg -------------------------------------------------------------------------------- /easyrpg/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/mainlogo.svg -------------------------------------------------------------------------------- /easyrpg/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/marker.png -------------------------------------------------------------------------------- /easyrpg/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/syslogo.svg -------------------------------------------------------------------------------- /easyrpg/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/_inc/x-button.png -------------------------------------------------------------------------------- /easyrpg/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/easyrpg/theme.xml -------------------------------------------------------------------------------- /eighting/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/eighting/_inc/bg.jpg -------------------------------------------------------------------------------- /eighting/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/eighting/theme.xml -------------------------------------------------------------------------------- /electron/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/electron/_inc/bg.jpg -------------------------------------------------------------------------------- /electron/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/electron/theme.xml -------------------------------------------------------------------------------- /exidy/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/exidy/_inc/bg.jpg -------------------------------------------------------------------------------- /exidy/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/exidy/_inc/syslogo.svg -------------------------------------------------------------------------------- /exidy/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/exidy/theme.xml -------------------------------------------------------------------------------- /fbneo/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fbneo/_inc/bg.jpg -------------------------------------------------------------------------------- /fbneo/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fbneo/_inc/marker.png -------------------------------------------------------------------------------- /fbneo/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fbneo/_inc/syslogo.svg -------------------------------------------------------------------------------- /fbneo/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fbneo/theme.xml -------------------------------------------------------------------------------- /fds/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/a-button.png -------------------------------------------------------------------------------- /fds/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/b-button.png -------------------------------------------------------------------------------- /fds/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/bg.jpg -------------------------------------------------------------------------------- /fds/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/mainlogo.svg -------------------------------------------------------------------------------- /fds/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/marker.png -------------------------------------------------------------------------------- /fds/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/syslogo.svg -------------------------------------------------------------------------------- /fds/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/x-button.png -------------------------------------------------------------------------------- /fds/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/_inc/y-button.png -------------------------------------------------------------------------------- /fds/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fds/theme.xml -------------------------------------------------------------------------------- /flatpak/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/flatpak/theme.xml -------------------------------------------------------------------------------- /fm7/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/a-button.png -------------------------------------------------------------------------------- /fm7/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/b-button.png -------------------------------------------------------------------------------- /fm7/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/bg.jpg -------------------------------------------------------------------------------- /fm7/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/mainlogo.svg -------------------------------------------------------------------------------- /fm7/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/marker.png -------------------------------------------------------------------------------- /fm7/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/syslogo.svg -------------------------------------------------------------------------------- /fm7/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/x-button.png -------------------------------------------------------------------------------- /fm7/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/_inc/y-button.png -------------------------------------------------------------------------------- /fm7/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fm7/theme.xml -------------------------------------------------------------------------------- /fmtowns/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fmtowns/_inc/bg.jpg -------------------------------------------------------------------------------- /fmtowns/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/fmtowns/theme.xml -------------------------------------------------------------------------------- /gaelco/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gaelco/_inc/bg.jpg -------------------------------------------------------------------------------- /gaelco/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gaelco/_inc/marker.png -------------------------------------------------------------------------------- /gaelco/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gaelco/theme.xml -------------------------------------------------------------------------------- /gameandwatch/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gameandwatch/theme.xml -------------------------------------------------------------------------------- /gamegear/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gamegear/_inc/bg.jpg -------------------------------------------------------------------------------- /gamegear/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gamegear/theme.xml -------------------------------------------------------------------------------- /gamepock/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gamepock/_inc/bg.jpg -------------------------------------------------------------------------------- /gamepock/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gamepock/theme.xml -------------------------------------------------------------------------------- /gamesplash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gamesplash.xml -------------------------------------------------------------------------------- /gb/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/a-button.png -------------------------------------------------------------------------------- /gb/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/b-button.png -------------------------------------------------------------------------------- /gb/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/bg.jpg -------------------------------------------------------------------------------- /gb/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/mainlogo.svg -------------------------------------------------------------------------------- /gb/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/marker.png -------------------------------------------------------------------------------- /gb/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/meta-genre.svg -------------------------------------------------------------------------------- /gb/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/syslogo.svg -------------------------------------------------------------------------------- /gb/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/x-button.png -------------------------------------------------------------------------------- /gb/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/_inc/y-button.png -------------------------------------------------------------------------------- /gb/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb/theme.xml -------------------------------------------------------------------------------- /gb2players/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb2players/_inc/bg.jpg -------------------------------------------------------------------------------- /gb2players/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gb2players/theme.xml -------------------------------------------------------------------------------- /gba/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/a-button.png -------------------------------------------------------------------------------- /gba/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/b-button.png -------------------------------------------------------------------------------- /gba/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/bg.jpg -------------------------------------------------------------------------------- /gba/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/mainlogo.svg -------------------------------------------------------------------------------- /gba/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/marker.png -------------------------------------------------------------------------------- /gba/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/syslogo.svg -------------------------------------------------------------------------------- /gba/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/x-button.png -------------------------------------------------------------------------------- /gba/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/_inc/y-button.png -------------------------------------------------------------------------------- /gba/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gba/theme.xml -------------------------------------------------------------------------------- /gbc/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/a-button.png -------------------------------------------------------------------------------- /gbc/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/b-button.png -------------------------------------------------------------------------------- /gbc/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/bg.jpg -------------------------------------------------------------------------------- /gbc/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/mainlogo.svg -------------------------------------------------------------------------------- /gbc/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/marker.png -------------------------------------------------------------------------------- /gbc/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/syslogo.svg -------------------------------------------------------------------------------- /gbc/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/x-button.png -------------------------------------------------------------------------------- /gbc/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/_inc/y-button.png -------------------------------------------------------------------------------- /gbc/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc/theme.xml -------------------------------------------------------------------------------- /gbc2players/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gbc2players/theme.xml -------------------------------------------------------------------------------- /gc/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/a-button.png -------------------------------------------------------------------------------- /gc/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/b-button.png -------------------------------------------------------------------------------- /gc/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/bg.jpg -------------------------------------------------------------------------------- /gc/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/mainlogo.svg -------------------------------------------------------------------------------- /gc/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/marker.png -------------------------------------------------------------------------------- /gc/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/meta-genre.svg -------------------------------------------------------------------------------- /gc/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/syslogo.svg -------------------------------------------------------------------------------- /gc/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/x-button.png -------------------------------------------------------------------------------- /gc/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/_inc/y-button.png -------------------------------------------------------------------------------- /gc/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gc/theme.xml -------------------------------------------------------------------------------- /gottlieb/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gottlieb/_inc/bg.jpg -------------------------------------------------------------------------------- /gottlieb/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gottlieb/theme.xml -------------------------------------------------------------------------------- /gp32/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/a-button.png -------------------------------------------------------------------------------- /gp32/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/b-button.png -------------------------------------------------------------------------------- /gp32/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/bg.jpg -------------------------------------------------------------------------------- /gp32/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/mainlogo.svg -------------------------------------------------------------------------------- /gp32/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/marker.png -------------------------------------------------------------------------------- /gp32/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/syslogo.svg -------------------------------------------------------------------------------- /gp32/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/x-button.png -------------------------------------------------------------------------------- /gp32/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/_inc/y-button.png -------------------------------------------------------------------------------- /gp32/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gp32/theme.xml -------------------------------------------------------------------------------- /gx4000/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gx4000/_inc/bg.jpg -------------------------------------------------------------------------------- /gx4000/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gx4000/_inc/marker.png -------------------------------------------------------------------------------- /gx4000/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/gx4000/theme.xml -------------------------------------------------------------------------------- /hikaru/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/hikaru/_inc/bg.jpg -------------------------------------------------------------------------------- /hikaru/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/hikaru/_inc/marker.png -------------------------------------------------------------------------------- /hikaru/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/hikaru/theme.xml -------------------------------------------------------------------------------- /igs/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/igs/_inc/bg.jpg -------------------------------------------------------------------------------- /igs/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/igs/_inc/mainlogo.svg -------------------------------------------------------------------------------- /igs/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/igs/_inc/marker.png -------------------------------------------------------------------------------- /igs/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/igs/_inc/syslogo.svg -------------------------------------------------------------------------------- /igs/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/igs/theme.xml -------------------------------------------------------------------------------- /ikemen/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ikemen/_inc/bg.jpg -------------------------------------------------------------------------------- /ikemen/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ikemen/_inc/marker.png -------------------------------------------------------------------------------- /ikemen/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ikemen/theme.xml -------------------------------------------------------------------------------- /imageviewer/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/imageviewer/theme.xml -------------------------------------------------------------------------------- /iortcw/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/iortcw/_inc/bg.jpg -------------------------------------------------------------------------------- /iortcw/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/iortcw/_inc/marker.png -------------------------------------------------------------------------------- /iortcw/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/iortcw/theme.xml -------------------------------------------------------------------------------- /irem/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/a-button.png -------------------------------------------------------------------------------- /irem/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/b-button.png -------------------------------------------------------------------------------- /irem/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/bg.jpg -------------------------------------------------------------------------------- /irem/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/mainlogo.svg -------------------------------------------------------------------------------- /irem/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/marker.png -------------------------------------------------------------------------------- /irem/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/syslogo.svg -------------------------------------------------------------------------------- /irem/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/x-button.png -------------------------------------------------------------------------------- /irem/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/_inc/y-button.png -------------------------------------------------------------------------------- /irem/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/irem/theme.xml -------------------------------------------------------------------------------- /jaleco/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/jaleco/_inc/bg.jpg -------------------------------------------------------------------------------- /jaleco/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/jaleco/_inc/marker.png -------------------------------------------------------------------------------- /jaleco/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/jaleco/theme.xml -------------------------------------------------------------------------------- /kaneko/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/kaneko/_inc/bg.jpg -------------------------------------------------------------------------------- /kaneko/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/kaneko/_inc/marker.png -------------------------------------------------------------------------------- /kaneko/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/kaneko/theme.xml -------------------------------------------------------------------------------- /konami/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/konami/_inc/bg.jpg -------------------------------------------------------------------------------- /konami/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/konami/_inc/marker.png -------------------------------------------------------------------------------- /konami/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/konami/theme.xml -------------------------------------------------------------------------------- /lcdgames/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/lcdgames/theme.xml -------------------------------------------------------------------------------- /lindbergh/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/lindbergh/_inc/bg.jpg -------------------------------------------------------------------------------- /lindbergh/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/lindbergh/theme.xml -------------------------------------------------------------------------------- /mame/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/a-button.png -------------------------------------------------------------------------------- /mame/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/b-button.png -------------------------------------------------------------------------------- /mame/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/bg.jpg -------------------------------------------------------------------------------- /mame/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/mainlogo.svg -------------------------------------------------------------------------------- /mame/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/marker.png -------------------------------------------------------------------------------- /mame/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/syslogo.svg -------------------------------------------------------------------------------- /mame/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/x-button.png -------------------------------------------------------------------------------- /mame/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/_inc/y-button.png -------------------------------------------------------------------------------- /mame/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mame/theme.xml -------------------------------------------------------------------------------- /mastersystem/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mastersystem/theme.xml -------------------------------------------------------------------------------- /megadrive/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/megadrive/_inc/bg.jpg -------------------------------------------------------------------------------- /megadrive/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/megadrive/theme.xml -------------------------------------------------------------------------------- /midway/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/midway/_inc/bg.jpg -------------------------------------------------------------------------------- /midway/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/midway/_inc/marker.png -------------------------------------------------------------------------------- /midway/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/midway/theme.xml -------------------------------------------------------------------------------- /mitchell/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mitchell/_inc/bg.jpg -------------------------------------------------------------------------------- /mitchell/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/mitchell/theme.xml -------------------------------------------------------------------------------- /model2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/model2/_inc/bg.jpg -------------------------------------------------------------------------------- /model2/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/model2/_inc/marker.png -------------------------------------------------------------------------------- /model2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/model2/theme.xml -------------------------------------------------------------------------------- /model3/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/model3/_inc/bg.jpg -------------------------------------------------------------------------------- /model3/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/model3/_inc/marker.png -------------------------------------------------------------------------------- /model3/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/model3/theme.xml -------------------------------------------------------------------------------- /msu-md/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msu-md/_inc/bg.jpg -------------------------------------------------------------------------------- /msu-md/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msu-md/_inc/marker.png -------------------------------------------------------------------------------- /msu-md/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msu-md/theme.xml -------------------------------------------------------------------------------- /msx/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/a-button.png -------------------------------------------------------------------------------- /msx/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/b-button.png -------------------------------------------------------------------------------- /msx/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/bg.jpg -------------------------------------------------------------------------------- /msx/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/mainlogo.svg -------------------------------------------------------------------------------- /msx/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/marker.png -------------------------------------------------------------------------------- /msx/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/syslogo.svg -------------------------------------------------------------------------------- /msx/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/x-button.png -------------------------------------------------------------------------------- /msx/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/_inc/y-button.png -------------------------------------------------------------------------------- /msx/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx/theme.xml -------------------------------------------------------------------------------- /msx1/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/a-button.png -------------------------------------------------------------------------------- /msx1/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/b-button.png -------------------------------------------------------------------------------- /msx1/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/bg.jpg -------------------------------------------------------------------------------- /msx1/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/mainlogo.svg -------------------------------------------------------------------------------- /msx1/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/syslogo.svg -------------------------------------------------------------------------------- /msx1/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/x-button.png -------------------------------------------------------------------------------- /msx1/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/_inc/y-button.png -------------------------------------------------------------------------------- /msx1/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx1/theme.xml -------------------------------------------------------------------------------- /msx2+/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2+/_inc/bg.jpg -------------------------------------------------------------------------------- /msx2+/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2+/_inc/marker.png -------------------------------------------------------------------------------- /msx2+/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2+/_inc/syslogo.svg -------------------------------------------------------------------------------- /msx2+/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2+/theme.xml -------------------------------------------------------------------------------- /msx2/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/a-button.png -------------------------------------------------------------------------------- /msx2/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/b-button.png -------------------------------------------------------------------------------- /msx2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/bg.jpg -------------------------------------------------------------------------------- /msx2/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/mainlogo.svg -------------------------------------------------------------------------------- /msx2/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/marker.png -------------------------------------------------------------------------------- /msx2/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/syslogo.svg -------------------------------------------------------------------------------- /msx2/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/x-button.png -------------------------------------------------------------------------------- /msx2/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/_inc/y-button.png -------------------------------------------------------------------------------- /msx2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msx2/theme.xml -------------------------------------------------------------------------------- /msxturbor/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msxturbor/_inc/bg.jpg -------------------------------------------------------------------------------- /msxturbor/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/msxturbor/theme.xml -------------------------------------------------------------------------------- /n64/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/a-button.png -------------------------------------------------------------------------------- /n64/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/b-button.png -------------------------------------------------------------------------------- /n64/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/bg.jpg -------------------------------------------------------------------------------- /n64/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/mainlogo.svg -------------------------------------------------------------------------------- /n64/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/marker.png -------------------------------------------------------------------------------- /n64/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/syslogo.svg -------------------------------------------------------------------------------- /n64/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/x-button.png -------------------------------------------------------------------------------- /n64/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/_inc/y-button.png -------------------------------------------------------------------------------- /n64/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64/theme.xml -------------------------------------------------------------------------------- /n64dd/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64dd/_inc/bg.jpg -------------------------------------------------------------------------------- /n64dd/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64dd/_inc/marker.png -------------------------------------------------------------------------------- /n64dd/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64dd/_inc/syslogo.svg -------------------------------------------------------------------------------- /n64dd/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/n64dd/theme.xml -------------------------------------------------------------------------------- /namco/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/namco/_inc/bg.jpg -------------------------------------------------------------------------------- /namco/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/namco/_inc/marker.png -------------------------------------------------------------------------------- /namco/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/namco/_inc/syslogo.svg -------------------------------------------------------------------------------- /namco/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/namco/theme.xml -------------------------------------------------------------------------------- /namco2x6/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/namco2x6/_inc/bg.jpg -------------------------------------------------------------------------------- /namco2x6/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/namco2x6/theme.xml -------------------------------------------------------------------------------- /naomi/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi/_inc/bg.jpg -------------------------------------------------------------------------------- /naomi/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi/_inc/marker.png -------------------------------------------------------------------------------- /naomi/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi/_inc/syslogo.svg -------------------------------------------------------------------------------- /naomi/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi/theme.xml -------------------------------------------------------------------------------- /naomi2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi2/_inc/bg.jpg -------------------------------------------------------------------------------- /naomi2/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi2/_inc/marker.png -------------------------------------------------------------------------------- /naomi2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/naomi2/theme.xml -------------------------------------------------------------------------------- /nds/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/a-button.png -------------------------------------------------------------------------------- /nds/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/b-button.png -------------------------------------------------------------------------------- /nds/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/bg.jpg -------------------------------------------------------------------------------- /nds/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/mainlogo.svg -------------------------------------------------------------------------------- /nds/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/marker.png -------------------------------------------------------------------------------- /nds/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/syslogo.svg -------------------------------------------------------------------------------- /nds/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/x-button.png -------------------------------------------------------------------------------- /nds/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/_inc/y-button.png -------------------------------------------------------------------------------- /nds/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nds/theme.xml -------------------------------------------------------------------------------- /neogeo/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/neogeo/_inc/bg.jpg -------------------------------------------------------------------------------- /neogeo/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/neogeo/_inc/marker.png -------------------------------------------------------------------------------- /neogeo/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/neogeo/theme.xml -------------------------------------------------------------------------------- /neogeocd/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/neogeocd/_inc/bg.jpg -------------------------------------------------------------------------------- /neogeocd/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/neogeocd/theme.xml -------------------------------------------------------------------------------- /nes/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/a-button.png -------------------------------------------------------------------------------- /nes/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/b-button.png -------------------------------------------------------------------------------- /nes/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/bg.jpg -------------------------------------------------------------------------------- /nes/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/mainlogo.svg -------------------------------------------------------------------------------- /nes/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/marker.png -------------------------------------------------------------------------------- /nes/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/syslogo.svg -------------------------------------------------------------------------------- /nes/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/x-button.png -------------------------------------------------------------------------------- /nes/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/_inc/y-button.png -------------------------------------------------------------------------------- /nes/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nes/theme.xml -------------------------------------------------------------------------------- /ngp/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/a-button.png -------------------------------------------------------------------------------- /ngp/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/b-button.png -------------------------------------------------------------------------------- /ngp/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/bg.jpg -------------------------------------------------------------------------------- /ngp/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/mainlogo.svg -------------------------------------------------------------------------------- /ngp/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/marker.png -------------------------------------------------------------------------------- /ngp/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/syslogo.svg -------------------------------------------------------------------------------- /ngp/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/x-button.png -------------------------------------------------------------------------------- /ngp/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/_inc/y-button.png -------------------------------------------------------------------------------- /ngp/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngp/theme.xml -------------------------------------------------------------------------------- /ngpc/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/a-button.png -------------------------------------------------------------------------------- /ngpc/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/b-button.png -------------------------------------------------------------------------------- /ngpc/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/bg.jpg -------------------------------------------------------------------------------- /ngpc/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/mainlogo.svg -------------------------------------------------------------------------------- /ngpc/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/marker.png -------------------------------------------------------------------------------- /ngpc/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/syslogo.svg -------------------------------------------------------------------------------- /ngpc/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/x-button.png -------------------------------------------------------------------------------- /ngpc/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/_inc/y-button.png -------------------------------------------------------------------------------- /ngpc/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ngpc/theme.xml -------------------------------------------------------------------------------- /nichibutsu/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nichibutsu/_inc/bg.jpg -------------------------------------------------------------------------------- /nichibutsu/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nichibutsu/theme.xml -------------------------------------------------------------------------------- /nintendo/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nintendo/_inc/bg.jpg -------------------------------------------------------------------------------- /nintendo/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nintendo/theme.xml -------------------------------------------------------------------------------- /nmk/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nmk/_inc/bg.jpg -------------------------------------------------------------------------------- /nmk/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nmk/_inc/mainlogo.svg -------------------------------------------------------------------------------- /nmk/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nmk/_inc/marker.png -------------------------------------------------------------------------------- /nmk/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nmk/_inc/syslogo.svg -------------------------------------------------------------------------------- /nmk/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/nmk/theme.xml -------------------------------------------------------------------------------- /odyssey2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/odyssey2/_inc/bg.jpg -------------------------------------------------------------------------------- /odyssey2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/odyssey2/theme.xml -------------------------------------------------------------------------------- /openbor/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/openbor/_inc/bg.jpg -------------------------------------------------------------------------------- /openbor/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/openbor/theme.xml -------------------------------------------------------------------------------- /pc/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/a-button.png -------------------------------------------------------------------------------- /pc/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/b-button.png -------------------------------------------------------------------------------- /pc/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/bg.jpg -------------------------------------------------------------------------------- /pc/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/mainlogo.svg -------------------------------------------------------------------------------- /pc/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/marker.png -------------------------------------------------------------------------------- /pc/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/meta-genre.svg -------------------------------------------------------------------------------- /pc/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/syslogo.svg -------------------------------------------------------------------------------- /pc/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/x-button.png -------------------------------------------------------------------------------- /pc/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/_inc/y-button.png -------------------------------------------------------------------------------- /pc/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc/theme.xml -------------------------------------------------------------------------------- /pc88/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/a-button.png -------------------------------------------------------------------------------- /pc88/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/b-button.png -------------------------------------------------------------------------------- /pc88/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/bg.jpg -------------------------------------------------------------------------------- /pc88/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/mainlogo.svg -------------------------------------------------------------------------------- /pc88/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/marker.png -------------------------------------------------------------------------------- /pc88/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/syslogo.svg -------------------------------------------------------------------------------- /pc88/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/x-button.png -------------------------------------------------------------------------------- /pc88/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/_inc/y-button.png -------------------------------------------------------------------------------- /pc88/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc88/theme.xml -------------------------------------------------------------------------------- /pc98/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/a-button.png -------------------------------------------------------------------------------- /pc98/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/b-button.png -------------------------------------------------------------------------------- /pc98/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/bg.jpg -------------------------------------------------------------------------------- /pc98/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/mainlogo.svg -------------------------------------------------------------------------------- /pc98/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/marker.png -------------------------------------------------------------------------------- /pc98/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/syslogo.svg -------------------------------------------------------------------------------- /pc98/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/x-button.png -------------------------------------------------------------------------------- /pc98/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/_inc/y-button.png -------------------------------------------------------------------------------- /pc98/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pc98/theme.xml -------------------------------------------------------------------------------- /pce-cd/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pce-cd/_inc/bg.jpg -------------------------------------------------------------------------------- /pce-cd/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pce-cd/_inc/marker.png -------------------------------------------------------------------------------- /pce-cd/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pce-cd/theme.xml -------------------------------------------------------------------------------- /pcengine/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcengine/_inc/bg.jpg -------------------------------------------------------------------------------- /pcengine/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcengine/theme.xml -------------------------------------------------------------------------------- /pcfx/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/a-button.png -------------------------------------------------------------------------------- /pcfx/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/b-button.png -------------------------------------------------------------------------------- /pcfx/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/bg.jpg -------------------------------------------------------------------------------- /pcfx/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/mainlogo.svg -------------------------------------------------------------------------------- /pcfx/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/marker.png -------------------------------------------------------------------------------- /pcfx/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/syslogo.svg -------------------------------------------------------------------------------- /pcfx/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/x-button.png -------------------------------------------------------------------------------- /pcfx/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/_inc/y-button.png -------------------------------------------------------------------------------- /pcfx/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pcfx/theme.xml -------------------------------------------------------------------------------- /pet/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/a-button.png -------------------------------------------------------------------------------- /pet/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/b-button.png -------------------------------------------------------------------------------- /pet/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/bg.jpg -------------------------------------------------------------------------------- /pet/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/mainlogo.svg -------------------------------------------------------------------------------- /pet/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/marker.png -------------------------------------------------------------------------------- /pet/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/syslogo.svg -------------------------------------------------------------------------------- /pet/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/x-button.png -------------------------------------------------------------------------------- /pet/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/_inc/y-button.png -------------------------------------------------------------------------------- /pet/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pet/theme.xml -------------------------------------------------------------------------------- /pico8/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pico8/_inc/bg.jpg -------------------------------------------------------------------------------- /pico8/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pico8/_inc/marker.png -------------------------------------------------------------------------------- /pico8/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pico8/_inc/syslogo.svg -------------------------------------------------------------------------------- /pico8/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pico8/theme.xml -------------------------------------------------------------------------------- /ports/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ports/_inc/bg.jpg -------------------------------------------------------------------------------- /ports/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ports/_inc/syslogo.svg -------------------------------------------------------------------------------- /ports/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ports/theme.xml -------------------------------------------------------------------------------- /ps2/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/a-button.png -------------------------------------------------------------------------------- /ps2/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/b-button.png -------------------------------------------------------------------------------- /ps2/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/bg.jpg -------------------------------------------------------------------------------- /ps2/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/mainlogo.svg -------------------------------------------------------------------------------- /ps2/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/marker.png -------------------------------------------------------------------------------- /ps2/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/syslogo.svg -------------------------------------------------------------------------------- /ps2/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/x-button.png -------------------------------------------------------------------------------- /ps2/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/_inc/y-button.png -------------------------------------------------------------------------------- /ps2/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps2/theme.xml -------------------------------------------------------------------------------- /ps3/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/a-button.png -------------------------------------------------------------------------------- /ps3/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/b-button.png -------------------------------------------------------------------------------- /ps3/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/bg.jpg -------------------------------------------------------------------------------- /ps3/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/mainlogo.svg -------------------------------------------------------------------------------- /ps3/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/marker.png -------------------------------------------------------------------------------- /ps3/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/syslogo.svg -------------------------------------------------------------------------------- /ps3/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/x-button.png -------------------------------------------------------------------------------- /ps3/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/_inc/y-button.png -------------------------------------------------------------------------------- /ps3/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps3/theme.xml -------------------------------------------------------------------------------- /ps4/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/a-button.png -------------------------------------------------------------------------------- /ps4/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/b-button.png -------------------------------------------------------------------------------- /ps4/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/bg.jpg -------------------------------------------------------------------------------- /ps4/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/mainlogo.svg -------------------------------------------------------------------------------- /ps4/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/marker.png -------------------------------------------------------------------------------- /ps4/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/syslogo.svg -------------------------------------------------------------------------------- /ps4/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/x-button.png -------------------------------------------------------------------------------- /ps4/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/_inc/y-button.png -------------------------------------------------------------------------------- /ps4/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ps4/theme.xml -------------------------------------------------------------------------------- /psikyo/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psikyo/_inc/bg.jpg -------------------------------------------------------------------------------- /psikyo/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psikyo/_inc/marker.png -------------------------------------------------------------------------------- /psikyo/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psikyo/theme.xml -------------------------------------------------------------------------------- /psp/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/a-button.png -------------------------------------------------------------------------------- /psp/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/b-button.png -------------------------------------------------------------------------------- /psp/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/bg.jpg -------------------------------------------------------------------------------- /psp/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/mainlogo.svg -------------------------------------------------------------------------------- /psp/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/marker.png -------------------------------------------------------------------------------- /psp/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/syslogo.svg -------------------------------------------------------------------------------- /psp/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/x-button.png -------------------------------------------------------------------------------- /psp/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/_inc/y-button.png -------------------------------------------------------------------------------- /psp/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psp/theme.xml -------------------------------------------------------------------------------- /pspminis/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pspminis/_inc/bg.jpg -------------------------------------------------------------------------------- /pspminis/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pspminis/theme.xml -------------------------------------------------------------------------------- /psvita/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psvita/_inc/bg.jpg -------------------------------------------------------------------------------- /psvita/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psvita/_inc/marker.png -------------------------------------------------------------------------------- /psvita/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psvita/theme.xml -------------------------------------------------------------------------------- /psx/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/a-button.png -------------------------------------------------------------------------------- /psx/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/b-button.png -------------------------------------------------------------------------------- /psx/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/bg.jpg -------------------------------------------------------------------------------- /psx/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/mainlogo.svg -------------------------------------------------------------------------------- /psx/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/marker.png -------------------------------------------------------------------------------- /psx/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/syslogo.svg -------------------------------------------------------------------------------- /psx/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/x-button.png -------------------------------------------------------------------------------- /psx/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/_inc/y-button.png -------------------------------------------------------------------------------- /psx/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/psx/theme.xml -------------------------------------------------------------------------------- /pygame/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pygame/_inc/marker.png -------------------------------------------------------------------------------- /pygame/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/pygame/theme.xml -------------------------------------------------------------------------------- /resources/busy_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/resources/busy_0.svg -------------------------------------------------------------------------------- /resources/busy_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/resources/busy_1.svg -------------------------------------------------------------------------------- /resources/busy_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/resources/busy_2.svg -------------------------------------------------------------------------------- /resources/busy_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/resources/busy_3.svg -------------------------------------------------------------------------------- /samcoupe/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/samcoupe/_inc/bg.jpg -------------------------------------------------------------------------------- /samcoupe/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/samcoupe/theme.xml -------------------------------------------------------------------------------- /sammy/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sammy/_inc/bg.jpg -------------------------------------------------------------------------------- /sammy/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sammy/_inc/marker.png -------------------------------------------------------------------------------- /sammy/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sammy/_inc/syslogo.svg -------------------------------------------------------------------------------- /sammy/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sammy/theme.xml -------------------------------------------------------------------------------- /satellaview/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/satellaview/theme.xml -------------------------------------------------------------------------------- /saturn/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/saturn/_inc/bg.jpg -------------------------------------------------------------------------------- /saturn/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/saturn/_inc/marker.png -------------------------------------------------------------------------------- /saturn/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/saturn/theme.xml -------------------------------------------------------------------------------- /scummvm/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scummvm/_inc/bg.jpg -------------------------------------------------------------------------------- /scummvm/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scummvm/theme.xml -------------------------------------------------------------------------------- /scv/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scv/_inc/bg.jpg -------------------------------------------------------------------------------- /scv/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scv/_inc/mainlogo.svg -------------------------------------------------------------------------------- /scv/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scv/_inc/marker.png -------------------------------------------------------------------------------- /scv/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scv/_inc/syslogo.svg -------------------------------------------------------------------------------- /scv/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/scv/theme.xml -------------------------------------------------------------------------------- /sdlpop/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sdlpop/_inc/bg.jpg -------------------------------------------------------------------------------- /sdlpop/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sdlpop/_inc/marker.png -------------------------------------------------------------------------------- /sdlpop/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sdlpop/theme.xml -------------------------------------------------------------------------------- /sega/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/a-button.png -------------------------------------------------------------------------------- /sega/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/b-button.png -------------------------------------------------------------------------------- /sega/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/bg.jpg -------------------------------------------------------------------------------- /sega/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/mainlogo.svg -------------------------------------------------------------------------------- /sega/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/marker.png -------------------------------------------------------------------------------- /sega/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/syslogo.svg -------------------------------------------------------------------------------- /sega/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/x-button.png -------------------------------------------------------------------------------- /sega/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/_inc/y-button.png -------------------------------------------------------------------------------- /sega/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega/theme.xml -------------------------------------------------------------------------------- /sega32x/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega32x/_inc/bg.jpg -------------------------------------------------------------------------------- /sega32x/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sega32x/theme.xml -------------------------------------------------------------------------------- /segacd/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/segacd/_inc/bg.jpg -------------------------------------------------------------------------------- /segacd/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/segacd/_inc/marker.png -------------------------------------------------------------------------------- /segacd/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/segacd/theme.xml -------------------------------------------------------------------------------- /segastv/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/segastv/_inc/bg.jpg -------------------------------------------------------------------------------- /segastv/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/segastv/theme.xml -------------------------------------------------------------------------------- /semicom/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/semicom/_inc/bg.jpg -------------------------------------------------------------------------------- /semicom/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/semicom/theme.xml -------------------------------------------------------------------------------- /sg-1000/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sg-1000/_inc/bg.jpg -------------------------------------------------------------------------------- /sg-1000/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sg-1000/theme.xml -------------------------------------------------------------------------------- /sgb/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/a-button.png -------------------------------------------------------------------------------- /sgb/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/b-button.png -------------------------------------------------------------------------------- /sgb/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/bg.jpg -------------------------------------------------------------------------------- /sgb/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/mainlogo.svg -------------------------------------------------------------------------------- /sgb/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/marker.png -------------------------------------------------------------------------------- /sgb/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/syslogo.svg -------------------------------------------------------------------------------- /sgb/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/x-button.png -------------------------------------------------------------------------------- /sgb/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/_inc/y-button.png -------------------------------------------------------------------------------- /sgb/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sgb/theme.xml -------------------------------------------------------------------------------- /snes-msu1/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes-msu1/_inc/bg.jpg -------------------------------------------------------------------------------- /snes-msu1/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes-msu1/theme.xml -------------------------------------------------------------------------------- /snes/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/a-button.png -------------------------------------------------------------------------------- /snes/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/b-button.png -------------------------------------------------------------------------------- /snes/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/bg.jpg -------------------------------------------------------------------------------- /snes/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/mainlogo.svg -------------------------------------------------------------------------------- /snes/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/marker.png -------------------------------------------------------------------------------- /snes/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/syslogo.svg -------------------------------------------------------------------------------- /snes/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/x-button.png -------------------------------------------------------------------------------- /snes/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/_inc/y-button.png -------------------------------------------------------------------------------- /snes/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snes/theme.xml -------------------------------------------------------------------------------- /snk/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/a-button.png -------------------------------------------------------------------------------- /snk/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/b-button.png -------------------------------------------------------------------------------- /snk/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/bg.jpg -------------------------------------------------------------------------------- /snk/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/mainlogo.svg -------------------------------------------------------------------------------- /snk/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/marker.png -------------------------------------------------------------------------------- /snk/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/syslogo.svg -------------------------------------------------------------------------------- /snk/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/x-button.png -------------------------------------------------------------------------------- /snk/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/_inc/y-button.png -------------------------------------------------------------------------------- /snk/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/snk/theme.xml -------------------------------------------------------------------------------- /solarus/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/solarus/_inc/bg.jpg -------------------------------------------------------------------------------- /solarus/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/solarus/theme.xml -------------------------------------------------------------------------------- /spectravideo/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/spectravideo/theme.xml -------------------------------------------------------------------------------- /splash.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/splash.mp4 -------------------------------------------------------------------------------- /splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/splash.xml -------------------------------------------------------------------------------- /steam/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/steam/_inc/bg.jpg -------------------------------------------------------------------------------- /steam/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/steam/_inc/marker.png -------------------------------------------------------------------------------- /steam/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/steam/_inc/syslogo.svg -------------------------------------------------------------------------------- /steam/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/steam/theme.xml -------------------------------------------------------------------------------- /sufami/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sufami/_inc/bg.jpg -------------------------------------------------------------------------------- /sufami/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sufami/_inc/marker.png -------------------------------------------------------------------------------- /sufami/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/sufami/theme.xml -------------------------------------------------------------------------------- /supergrafx/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/supergrafx/_inc/bg.jpg -------------------------------------------------------------------------------- /supergrafx/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/supergrafx/theme.xml -------------------------------------------------------------------------------- /supervision/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/supervision/theme.xml -------------------------------------------------------------------------------- /supracan/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/supracan/_inc/bg.jpg -------------------------------------------------------------------------------- /supracan/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/supracan/theme.xml -------------------------------------------------------------------------------- /switch/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/switch/_inc/bg.jpg -------------------------------------------------------------------------------- /switch/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/switch/_inc/marker.png -------------------------------------------------------------------------------- /switch/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/switch/theme.xml -------------------------------------------------------------------------------- /taito/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/taito/_inc/bg.jpg -------------------------------------------------------------------------------- /taito/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/taito/_inc/marker.png -------------------------------------------------------------------------------- /taito/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/taito/_inc/syslogo.svg -------------------------------------------------------------------------------- /taito/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/taito/theme.xml -------------------------------------------------------------------------------- /technos/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/technos/_inc/bg.jpg -------------------------------------------------------------------------------- /technos/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/technos/theme.xml -------------------------------------------------------------------------------- /tecmo/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tecmo/_inc/bg.jpg -------------------------------------------------------------------------------- /tecmo/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tecmo/_inc/marker.png -------------------------------------------------------------------------------- /tecmo/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tecmo/_inc/syslogo.svg -------------------------------------------------------------------------------- /tecmo/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tecmo/theme.xml -------------------------------------------------------------------------------- /theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/theme.xml -------------------------------------------------------------------------------- /ti99/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ti99/_inc/bg.jpg -------------------------------------------------------------------------------- /ti99/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ti99/_inc/mainlogo.svg -------------------------------------------------------------------------------- /ti99/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ti99/_inc/marker.png -------------------------------------------------------------------------------- /ti99/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ti99/_inc/syslogo.svg -------------------------------------------------------------------------------- /ti99/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/ti99/theme.xml -------------------------------------------------------------------------------- /tic80/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tic80/_inc/bg.jpg -------------------------------------------------------------------------------- /tic80/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tic80/_inc/marker.png -------------------------------------------------------------------------------- /tic80/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tic80/_inc/syslogo.svg -------------------------------------------------------------------------------- /tic80/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/tic80/theme.xml -------------------------------------------------------------------------------- /toaplan/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/toaplan/_inc/bg.jpg -------------------------------------------------------------------------------- /toaplan/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/toaplan/theme.xml -------------------------------------------------------------------------------- /triforce/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/triforce/_inc/bg.jpg -------------------------------------------------------------------------------- /triforce/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/triforce/theme.xml -------------------------------------------------------------------------------- /universal/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/universal/_inc/bg.jpg -------------------------------------------------------------------------------- /universal/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/universal/theme.xml -------------------------------------------------------------------------------- /vectrex/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vectrex/_inc/bg.jpg -------------------------------------------------------------------------------- /vectrex/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vectrex/theme.xml -------------------------------------------------------------------------------- /videopacplus/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/videopacplus/theme.xml -------------------------------------------------------------------------------- /virtualboy/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/virtualboy/_inc/bg.jpg -------------------------------------------------------------------------------- /virtualboy/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/virtualboy/theme.xml -------------------------------------------------------------------------------- /visco/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/visco/_inc/bg.jpg -------------------------------------------------------------------------------- /visco/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/visco/_inc/marker.png -------------------------------------------------------------------------------- /visco/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/visco/_inc/syslogo.svg -------------------------------------------------------------------------------- /visco/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/visco/theme.xml -------------------------------------------------------------------------------- /vpinball/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vpinball/_inc/bg.jpg -------------------------------------------------------------------------------- /vpinball/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vpinball/theme.xml -------------------------------------------------------------------------------- /vsc/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/a-button.png -------------------------------------------------------------------------------- /vsc/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/b-button.png -------------------------------------------------------------------------------- /vsc/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/bg.jpg -------------------------------------------------------------------------------- /vsc/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/mainlogo.svg -------------------------------------------------------------------------------- /vsc/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/marker.png -------------------------------------------------------------------------------- /vsc/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/syslogo.svg -------------------------------------------------------------------------------- /vsc/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/x-button.png -------------------------------------------------------------------------------- /vsc/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/_inc/y-button.png -------------------------------------------------------------------------------- /vsc/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/vsc/theme.xml -------------------------------------------------------------------------------- /wii/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/a-button.png -------------------------------------------------------------------------------- /wii/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/b-button.png -------------------------------------------------------------------------------- /wii/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/bg.jpg -------------------------------------------------------------------------------- /wii/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/mainlogo.svg -------------------------------------------------------------------------------- /wii/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/marker.png -------------------------------------------------------------------------------- /wii/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/syslogo.svg -------------------------------------------------------------------------------- /wii/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/x-button.png -------------------------------------------------------------------------------- /wii/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/_inc/y-button.png -------------------------------------------------------------------------------- /wii/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wii/theme.xml -------------------------------------------------------------------------------- /wiiu/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/a-button.png -------------------------------------------------------------------------------- /wiiu/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/b-button.png -------------------------------------------------------------------------------- /wiiu/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/bg.jpg -------------------------------------------------------------------------------- /wiiu/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/mainlogo.svg -------------------------------------------------------------------------------- /wiiu/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/marker.png -------------------------------------------------------------------------------- /wiiu/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/syslogo.svg -------------------------------------------------------------------------------- /wiiu/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/x-button.png -------------------------------------------------------------------------------- /wiiu/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/_inc/y-button.png -------------------------------------------------------------------------------- /wiiu/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wiiu/theme.xml -------------------------------------------------------------------------------- /windows/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/windows/theme.xml -------------------------------------------------------------------------------- /wonderswan/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wonderswan/_inc/bg.jpg -------------------------------------------------------------------------------- /wonderswan/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/wonderswan/theme.xml -------------------------------------------------------------------------------- /x1/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/a-button.png -------------------------------------------------------------------------------- /x1/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/b-button.png -------------------------------------------------------------------------------- /x1/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/bg.jpg -------------------------------------------------------------------------------- /x1/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/mainlogo.svg -------------------------------------------------------------------------------- /x1/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/marker.png -------------------------------------------------------------------------------- /x1/_inc/meta-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/meta-genre.svg -------------------------------------------------------------------------------- /x1/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/syslogo.svg -------------------------------------------------------------------------------- /x1/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/x-button.png -------------------------------------------------------------------------------- /x1/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/_inc/y-button.png -------------------------------------------------------------------------------- /x1/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x1/theme.xml -------------------------------------------------------------------------------- /x68000/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x68000/_inc/bg.jpg -------------------------------------------------------------------------------- /x68000/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x68000/_inc/marker.png -------------------------------------------------------------------------------- /x68000/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/x68000/theme.xml -------------------------------------------------------------------------------- /xbox/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/a-button.png -------------------------------------------------------------------------------- /xbox/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/b-button.png -------------------------------------------------------------------------------- /xbox/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/bg.jpg -------------------------------------------------------------------------------- /xbox/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/mainlogo.svg -------------------------------------------------------------------------------- /xbox/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/marker.png -------------------------------------------------------------------------------- /xbox/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/syslogo.svg -------------------------------------------------------------------------------- /xbox/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/x-button.png -------------------------------------------------------------------------------- /xbox/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/_inc/y-button.png -------------------------------------------------------------------------------- /xbox/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox/theme.xml -------------------------------------------------------------------------------- /xbox360/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox360/_inc/bg.jpg -------------------------------------------------------------------------------- /xbox360/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xbox360/theme.xml -------------------------------------------------------------------------------- /xegs/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/a-button.png -------------------------------------------------------------------------------- /xegs/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/b-button.png -------------------------------------------------------------------------------- /xegs/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/bg.jpg -------------------------------------------------------------------------------- /xegs/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/mainlogo.svg -------------------------------------------------------------------------------- /xegs/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/marker.png -------------------------------------------------------------------------------- /xegs/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/syslogo.svg -------------------------------------------------------------------------------- /xegs/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/x-button.png -------------------------------------------------------------------------------- /xegs/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/_inc/y-button.png -------------------------------------------------------------------------------- /xegs/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/xegs/theme.xml -------------------------------------------------------------------------------- /zx81/_inc/a-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/a-button.png -------------------------------------------------------------------------------- /zx81/_inc/b-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/b-button.png -------------------------------------------------------------------------------- /zx81/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/bg.jpg -------------------------------------------------------------------------------- /zx81/_inc/mainlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/mainlogo.svg -------------------------------------------------------------------------------- /zx81/_inc/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/marker.png -------------------------------------------------------------------------------- /zx81/_inc/syslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/syslogo.svg -------------------------------------------------------------------------------- /zx81/_inc/x-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/x-button.png -------------------------------------------------------------------------------- /zx81/_inc/y-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/_inc/y-button.png -------------------------------------------------------------------------------- /zx81/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zx81/theme.xml -------------------------------------------------------------------------------- /zxspectrum/_inc/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zxspectrum/_inc/bg.jpg -------------------------------------------------------------------------------- /zxspectrum/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/20GotoTen/es-theme-retrofix/HEAD/zxspectrum/theme.xml --------------------------------------------------------------------------------