mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Added support for the game system MSX Turbo R.
This commit is contained in:
parent
127c1f2b2a
commit
4ddda376ba
|
@ -1479,9 +1479,10 @@ Consider the table below a work in progress as it's obvioulsy not fully populate
|
||||||
| mess | Multi Emulator Super System | | |
|
| mess | Multi Emulator Super System | | |
|
||||||
| moonlight | Moonlight game streaming | | |
|
| moonlight | Moonlight game streaming | | |
|
||||||
| moto | Thomson MO/TO series | | |
|
| moto | Thomson MO/TO series | | |
|
||||||
| msx | MSX | | |
|
| msx | MSX | RetroArch (blueMSX) | |
|
||||||
| msx1 | MSX1 | | |
|
| msx1 | MSX1 | RetroArch (blueMSX) | |
|
||||||
| msx2 | MSX2 | | |
|
| msx2 | MSX2 | RetroArch (blueMSX) | |
|
||||||
|
| msxturbor | MSX Turbo R | RetroArch (blueMSX) | |
|
||||||
| naomi | Sega NAOMI | | |
|
| naomi | Sega NAOMI | | |
|
||||||
| n3ds | Nintendo 3DS | RetroArch (Citra) | |
|
| n3ds | Nintendo 3DS | RetroArch (Citra) | |
|
||||||
| n64 | Nintendo 64 | RetroArch (Mupen64Plus-Next on Unix & macOS, ParaLLEl N64 on Windows) | Single archive or ROM file in root folder |
|
| n64 | Nintendo 64 | RetroArch (Mupen64Plus-Next on Unix & macOS, ParaLLEl N64 on Windows) | Single archive or ROM file in root folder |
|
||||||
|
|
|
@ -66,6 +66,8 @@ namespace PlatformIds
|
||||||
"moonlight", // Moonlight game streaming
|
"moonlight", // Moonlight game streaming
|
||||||
"moto", // Thomson MO/TO series
|
"moto", // Thomson MO/TO series
|
||||||
"msx", // MSX
|
"msx", // MSX
|
||||||
|
"msx2", // MSX2
|
||||||
|
"msxturbor", // MSX Turbo R
|
||||||
"n3ds", // Nintendo 3DS
|
"n3ds", // Nintendo 3DS
|
||||||
"n64", // Nintendo 64
|
"n64", // Nintendo 64
|
||||||
"naomi", // Sega NAOMI
|
"naomi", // Sega NAOMI
|
||||||
|
|
|
@ -66,6 +66,8 @@ namespace PlatformIds
|
||||||
MOONLIGHT,
|
MOONLIGHT,
|
||||||
THOMSON_MOTO,
|
THOMSON_MOTO,
|
||||||
MSX,
|
MSX,
|
||||||
|
MSX2,
|
||||||
|
MSX_TURBO_R,
|
||||||
NINTENDO_3DS,
|
NINTENDO_3DS,
|
||||||
NINTENDO_64,
|
NINTENDO_64,
|
||||||
SEGA_NAOMI,
|
SEGA_NAOMI,
|
||||||
|
|
|
@ -59,6 +59,8 @@ const std::map<PlatformId, std::string> gamesdb_new_platformid_map {
|
||||||
{ MICROSOFT_XBOX_360, "15" },
|
{ MICROSOFT_XBOX_360, "15" },
|
||||||
{ MOONLIGHT, "1" },
|
{ MOONLIGHT, "1" },
|
||||||
{ MSX, "4929" },
|
{ MSX, "4929" },
|
||||||
|
{ MSX2, "4929" },
|
||||||
|
{ MSX_TURBO_R, "4929" },
|
||||||
{ SNK_NEO_GEO, "24" },
|
{ SNK_NEO_GEO, "24" },
|
||||||
{ SNK_NEO_GEO_CD, "24" },
|
{ SNK_NEO_GEO_CD, "24" },
|
||||||
{ SNK_NEO_GEO_POCKET, "4922" },
|
{ SNK_NEO_GEO_POCKET, "4922" },
|
||||||
|
|
|
@ -58,6 +58,8 @@ const std::map<PlatformId, unsigned short> screenscraper_platformid_map {
|
||||||
{ MICROSOFT_XBOX_360, 33 },
|
{ MICROSOFT_XBOX_360, 33 },
|
||||||
{ MOONLIGHT, 138 },
|
{ MOONLIGHT, 138 },
|
||||||
{ MSX, 113 },
|
{ MSX, 113 },
|
||||||
|
{ MSX2, 116 },
|
||||||
|
{ MSX_TURBO_R, 118 },
|
||||||
{ SNK_NEO_GEO, 142 },
|
{ SNK_NEO_GEO, 142 },
|
||||||
{ SNK_NEO_GEO_CD, 142 },
|
{ SNK_NEO_GEO_CD, 142 },
|
||||||
{ SNK_NEO_GEO_POCKET, 25},
|
{ SNK_NEO_GEO_POCKET, 25},
|
||||||
|
|
|
@ -601,9 +601,18 @@
|
||||||
<path>%ROMPATH%/msx2</path>
|
<path>%ROMPATH%/msx2</path>
|
||||||
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
<command>/Applications/RetroArch.app/Contents/MacOS/RetroArch -L %EMUPATH%/../Resources/cores/bluemsx_libretro.dylib %ROM%</command>
|
<command>/Applications/RetroArch.app/Contents/MacOS/RetroArch -L %EMUPATH%/../Resources/cores/bluemsx_libretro.dylib %ROM%</command>
|
||||||
<platform>msx</platform>
|
<platform>msx2</platform>
|
||||||
<theme>msx2</theme>
|
<theme>msx2</theme>
|
||||||
</system>
|
</system>
|
||||||
|
<system>
|
||||||
|
<name>msxturbor</name>
|
||||||
|
<fullname>MSX Turbo R</fullname>
|
||||||
|
<path>%ROMPATH%/msxturbor</path>
|
||||||
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
|
<command>/Applications/RetroArch.app/Contents/MacOS/RetroArch -L %EMUPATH%/../Resources/cores/bluemsx_libretro.dylib %ROM%</command>
|
||||||
|
<platform>msxturbor</platform>
|
||||||
|
<theme>msxturbor</theme>
|
||||||
|
</system>
|
||||||
<system>
|
<system>
|
||||||
<name>n3ds</name>
|
<name>n3ds</name>
|
||||||
<fullname>Nintendo 3DS</fullname>
|
<fullname>Nintendo 3DS</fullname>
|
||||||
|
|
|
@ -601,9 +601,18 @@
|
||||||
<path>%ROMPATH%/msx2</path>
|
<path>%ROMPATH%/msx2</path>
|
||||||
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
<command>retroarch -L %COREPATH%/bluemsx_libretro.so %ROM%</command>
|
<command>retroarch -L %COREPATH%/bluemsx_libretro.so %ROM%</command>
|
||||||
<platform>msx</platform>
|
<platform>msx2</platform>
|
||||||
<theme>msx2</theme>
|
<theme>msx2</theme>
|
||||||
</system>
|
</system>
|
||||||
|
<system>
|
||||||
|
<name>msxturbor</name>
|
||||||
|
<fullname>MSX Turbo R</fullname>
|
||||||
|
<path>%ROMPATH%/msxturbor</path>
|
||||||
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
|
<command>retroarch -L %COREPATH%/bluemsx_libretro.so %ROM%</command>
|
||||||
|
<platform>msxturbor</platform>
|
||||||
|
<theme>msxturbor</theme>
|
||||||
|
</system>
|
||||||
<system>
|
<system>
|
||||||
<name>n3ds</name>
|
<name>n3ds</name>
|
||||||
<fullname>Nintendo 3DS</fullname>
|
<fullname>Nintendo 3DS</fullname>
|
||||||
|
|
|
@ -601,9 +601,18 @@
|
||||||
<path>%ROMPATH%/msx2</path>
|
<path>%ROMPATH%/msx2</path>
|
||||||
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
<command>flatpak run org.libretro.RetroArch -L %COREPATH%/bluemsx_libretro.so %ROM%</command>
|
<command>flatpak run org.libretro.RetroArch -L %COREPATH%/bluemsx_libretro.so %ROM%</command>
|
||||||
<platform>msx</platform>
|
<platform>msx2</platform>
|
||||||
<theme>msx2</theme>
|
<theme>msx2</theme>
|
||||||
</system>
|
</system>
|
||||||
|
<system>
|
||||||
|
<name>msxturbor</name>
|
||||||
|
<fullname>MSX Turbo R</fullname>
|
||||||
|
<path>%ROMPATH%/msxturbor</path>
|
||||||
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
|
<command>flatpak run org.libretro.RetroArch -L %COREPATH%/bluemsx_libretro.so %ROM%</command>
|
||||||
|
<platform>msxturbor</platform>
|
||||||
|
<theme>msxturbor</theme>
|
||||||
|
</system>
|
||||||
<system>
|
<system>
|
||||||
<name>n3ds</name>
|
<name>n3ds</name>
|
||||||
<fullname>Nintendo 3DS</fullname>
|
<fullname>Nintendo 3DS</fullname>
|
||||||
|
|
|
@ -601,9 +601,18 @@
|
||||||
<path>%ROMPATH%\msx2</path>
|
<path>%ROMPATH%\msx2</path>
|
||||||
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
<command>retroarch.exe -L %EMUPATH%\cores\bluemsx_libretro.dll %ROM%</command>
|
<command>retroarch.exe -L %EMUPATH%\cores\bluemsx_libretro.dll %ROM%</command>
|
||||||
<platform>msx</platform>
|
<platform>msx2</platform>
|
||||||
<theme>msx2</theme>
|
<theme>msx2</theme>
|
||||||
</system>
|
</system>
|
||||||
|
<system>
|
||||||
|
<name>msxturbor</name>
|
||||||
|
<fullname>MSX Turbo R</fullname>
|
||||||
|
<path>%ROMPATH%\msxturbor</path>
|
||||||
|
<extension>.rom .ROM .ri .RI .mx1 .MX1 .mx2 .MX2 .col .COL .dsk .DSK .cas .CAS .sg .SG .sc .SC .m3u .M3U .7z .7Z .zip .ZIP</extension>
|
||||||
|
<command>retroarch.exe -L %EMUPATH%\cores\bluemsx_libretro.dll %ROM%</command>
|
||||||
|
<platform>msxturbor</platform>
|
||||||
|
<theme>msxturbor</theme>
|
||||||
|
</system>
|
||||||
<system>
|
<system>
|
||||||
<name>n3ds</name>
|
<name>n3ds</name>
|
||||||
<fullname>Nintendo 3DS</fullname>
|
<fullname>Nintendo 3DS</fullname>
|
||||||
|
|
18
themes/rbsimple-DE/msxturbor/colors.xml
Normal file
18
themes/rbsimple-DE/msxturbor/colors.xml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<theme>
|
||||||
|
<formatVersion>6</formatVersion>
|
||||||
|
|
||||||
|
<view name="system, basic, detailed, video, grid">
|
||||||
|
<image name="band1" extra="true">
|
||||||
|
<color>637080</color>
|
||||||
|
</image>
|
||||||
|
<image name="band2" extra="true">
|
||||||
|
<color>28292b</color>
|
||||||
|
</image>
|
||||||
|
<image name="band3" extra="true">
|
||||||
|
<color>99784b</color>
|
||||||
|
</image>
|
||||||
|
<image name="band4" extra="true">
|
||||||
|
<color>32100f</color>
|
||||||
|
</image>
|
||||||
|
</view>
|
||||||
|
</theme>
|
1
themes/rbsimple-DE/msxturbor/images/console.svg
Normal file
1
themes/rbsimple-DE/msxturbor/images/console.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 30 KiB |
1
themes/rbsimple-DE/msxturbor/images/consolegame.svg
Normal file
1
themes/rbsimple-DE/msxturbor/images/consolegame.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 34 KiB |
1
themes/rbsimple-DE/msxturbor/images/controller.svg
Normal file
1
themes/rbsimple-DE/msxturbor/images/controller.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 12 KiB |
1
themes/rbsimple-DE/msxturbor/images/game.svg
Normal file
1
themes/rbsimple-DE/msxturbor/images/game.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-328.653 902.925 98.806 61.892"><path d="M-229.847 904.312c0-.769-.618-1.387-1.387-1.387h-96.02c-.769 0-1.387.618-1.387 1.387v4.204c0 .768.618 1.387 1.387 1.387h4.75c.769 0 1.387.619 1.387 1.387v18.703h-6.147c-.769 0-1.387.618-1.387 1.387v32.049c0 .768.618 1.387 1.387 1.387h96.032c.769 0 1.387-.618 1.387-1.387l-.002-59.117" fill="#2c2c2c"/><path d="M-238.969 960.81h-70.54c-2.849 0-5.18-2.331-5.18-5.18v-47.525c0-2.849 2.331-5.18 5.18-5.18h70.54c2.849 0 5.18 2.331 5.18 5.18v47.525c0 2.849-2.331 5.18-5.18 5.18z" fill="#a9a9a9"/><circle cx="-321.314" cy="948.932" r="3.306" fill="#e0e0e0"/><path d="M-327.255 929.994v-20.09h4.75c.769 0 1.387.619 1.387 1.387v18.703h-6.147" fill="#1d1c16"/><path d="M-320.338 913.747h-8.081a.223.223 0 0 1-.223-.223v-1.506c0-.123.1-.223.223-.223h8.081c.123 0 .223.1.223.223v1.506a.225.225 0 0 1-.223.223zM-320.338 917.242h-8.081a.223.223 0 0 1-.223-.223v-1.506c0-.123.1-.223.223-.223h8.081c.123 0 .223.1.223.223v1.506a.225.225 0 0 1-.223.223zM-320.338 920.737h-8.081a.223.223 0 0 1-.223-.223v-1.506c0-.123.1-.223.223-.223h8.081c.123 0 .223.1.223.223v1.506a.225.225 0 0 1-.223.223zM-320.338 924.137h-8.081a.223.223 0 0 1-.223-.223v-1.506c0-.123.1-.223.223-.223h8.081c.123 0 .223.1.223.223v1.506a.224.224 0 0 1-.223.223zM-320.338 927.538h-8.081a.223.223 0 0 1-.223-.223v-1.506c0-.123.1-.223.223-.223h8.081c.123 0 .223.1.223.223v1.506a.225.225 0 0 1-.223.223z" fill="#333"/><text transform="translate(-241.194 953.227)" fill="#c23435" font-family="ArialMT" font-size=".092">I don’t like bugs!</text><path fill="#25231d" d="M-250.304 952.465h12.015v4.582h-12.015z"/><path fill="#fff" d="M-238.66 954.762v-1.906h-4.267v3.811h4.267z"/><path d="M-241.999 954.793v-1.566h1.587l.721.541v.757h-.606l.77.567.001.634.001.633h-.721l-.005-.613-.005-.613-1.041-.011v1.237h-.701l-.001-1.566zm1.566-.618v-.288h-.866v.577h.866v-.289z" fill="#25231d"/><g fill="#fff"><path d="M-248.47 956.297v-.082l-.34-.012-.006-.211-.006-.211h.352v-.165h-.35v-.269l-.361.012-.006.129-.006.129h-.245v.165h.247v.221c0 .122.006.243.013.27.022.082.113.104.424.105l.283.001v-.082zM-247.296 955.998v-.381h-.371v.577h-.227v-.577h-.35v.337c0 .295.004.341.036.368.059.052.081.054.505.056l.407.002v-.382zM-246.661 956.075l.006-.294h.349v-.165h-.232c-.281.001-.382.022-.443.092-.043.05-.046.073-.046.348 0 .162.007.301.014.309a.635.635 0 0 0 .18.009l.166-.006.006-.293zM-245.263 956.322c.074-.06.093-.124.093-.315 0-.347-.044-.395-.379-.407l-.222-.008v-.244l-.361.012-.011.999h.418c.365-.002.424-.006.462-.037zm-.508-.335v-.206h.227v.412h-.227v-.206zM-244.094 956.316c.065-.051.096-.154.096-.318 0-.17-.031-.266-.105-.328-.061-.052-.071-.053-.366-.053-.338 0-.376.012-.428.136-.035.083-.039.424-.006.489.055.107.088.116.433.117.294-.001.327-.004.376-.043zm-.481-.329v-.206h.227v.412h-.227v-.206z"/></g><path d="M-248.794 954.731c.056-.187.108-.347.116-.356.008-.009.04.07.072.175l.108.362.052.171.396-.012.057-.175.117-.37.06-.195.124.37.124.37.667.005c.776.006.818 0 .985-.15.134-.12.179-.234.178-.442-.002-.238-.105-.427-.285-.52-.071-.037-.137-.046-.404-.059a3.003 3.003 0 0 1-.356-.029c-.05-.021-.048-.126.004-.154.025-.013.261-.021.623-.021h.584l.165.209c.091.115.163.217.16.226-.003.009-.14.213-.306.453s-.305.448-.311.464c-.009.023.038.028.254.028h.265l.196-.258c.108-.142.201-.258.207-.258s.094.116.195.258l.184.258h.274c.15 0 .274-.004.274-.009s-.144-.214-.319-.466-.319-.47-.319-.486c0-.016.13-.214.289-.44.159-.226.289-.42.289-.432 0-.014-.097-.021-.266-.021h-.267l-.11.154-.166.237c-.031.046-.064.083-.072.083s-.075-.083-.147-.184c-.217-.303-.096-.272-1.025-.265-.784.006-.803.007-.888.052-.169.091-.26.266-.259.5.001.192.029.299.108.408.101.139.15.154.536.168.355.013.433.031.433.103 0 .092-.062.103-.547.103h-.455l-.39-1.329-.433-.012-.101.33c-.055.182-.107.33-.114.33a.923.923 0 0 1-.07-.191l-.099-.33-.042-.14-.438.012-.068.247a57.056 57.056 0 0 0-.396 1.553c0 .018.061.023.231.019l.231-.006.095-.338z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
1
themes/rbsimple-DE/msxturbor/images/logo.svg
Normal file
1
themes/rbsimple-DE/msxturbor/images/logo.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 205.76 49.729"><text transform="translate(136.552 8.268)" fill="#c23435" font-family="ArialMT" font-size="1">I don’t like bugs!</text><path fill="#070308" d="M37.683 0h130.394v49.729H37.683z"/><path fill="#fff" d="M164.043 24.924V4.243h-46.296v41.362h46.296z"/><path d="M127.811 25.259V8.268h17.227l7.822 5.868v8.217h-6.573l8.351 6.148.006 6.875.006 6.875h-7.821l-.059-6.651-.059-6.651-11.294-.119v13.422h-7.604l-.002-16.993zm16.998-6.707v-3.13h-9.393v6.26h9.393v-3.13z" fill="#070308"/><g fill="#fff"><path d="M57.583 41.589v-.885l-3.69-.13-.064-2.292-.064-2.292h3.818v-1.789h-3.802v-2.924l-3.914.129-.067 1.397-.067 1.397H47.07v1.789h2.684l.003 2.403c.002 1.322.067 2.641.144 2.931.238.887 1.222 1.131 4.605 1.141l3.075.009.002-.884zM70.331 38.338v-4.136h-4.026v6.26h-2.46v-6.26h-3.802v3.654c0 3.201.049 3.697.391 3.995.643.56.883.587 5.48.605l4.417.018v-4.136zM77.215 39.177l.062-3.186h3.79v-1.789l-2.516.005c-3.051.007-4.147.235-4.809 1.001-.471.546-.503.787-.503 3.775 0 1.756.071 3.263.157 3.349.087.087.967.128 1.957.093l1.8-.064.062-3.184zM92.391 41.854c.806-.652 1.009-1.341 1.009-3.424 0-3.77-.477-4.282-4.114-4.414l-2.404-.087v-2.651l-3.914.129-.12 10.844 4.533-.005c3.957-.005 4.594-.055 5.01-.392zm-5.509-3.628V35.99h2.46v4.471h-2.46v-2.235zM105.072 41.793c.706-.555 1.042-1.668 1.042-3.455 0-1.84-.334-2.886-1.139-3.563-.664-.558-.767-.573-3.969-.573-3.67 0-4.079.13-4.641 1.475-.378.905-.421 4.6-.062 5.303.595 1.163.956 1.261 4.696 1.266 3.183.004 3.543-.036 4.073-.453zm-5.218-3.567V35.99h2.46v4.471h-2.46v-2.235z"/></g><path d="M54.068 24.588c.604-2.029 1.17-3.766 1.259-3.86s.439.761.777 1.9c.338 1.14.867 2.905 1.175 3.924l.56 1.852 4.293-.128.621-1.9c.342-1.045.912-2.854 1.268-4.02l.647-2.12 1.34 4.02 1.34 4.02 7.238.059c8.419.069 8.876-.001 10.688-1.629 1.449-1.302 1.947-2.541 1.93-4.802-.019-2.583-1.141-4.631-3.091-5.639-.771-.399-1.492-.503-4.389-.637-1.907-.088-3.643-.232-3.858-.32-.547-.223-.519-1.369.041-1.669.269-.144 2.827-.231 6.765-.231h6.333l1.789 2.269c.984 1.248 1.765 2.353 1.735 2.455-.03.102-1.522 2.313-3.317 4.913s-3.315 4.866-3.38 5.035c-.096.251.41.307 2.759.307h2.877l2.123-2.795c1.167-1.537 2.178-2.795 2.245-2.795.067 0 1.022 1.258 2.12 2.795l1.998 2.795h2.969c1.633 0 2.969-.042 2.969-.094s-1.56-2.327-3.467-5.056-3.467-5.105-3.467-5.279c0-.175 1.409-2.323 3.131-4.774 1.722-2.451 3.131-4.561 3.131-4.688 0-.147-1.051-.231-2.892-.231h-2.892l-1.19 1.669c-.654.918-1.465 2.075-1.802 2.571-.337.496-.689.9-.783.896-.093-.004-.81-.902-1.593-1.997-2.35-3.287-1.045-2.951-11.129-2.872-8.513.067-8.715.079-9.633.569-1.838.982-2.825 2.884-2.814 5.424.009 2.085.317 3.246 1.174 4.429 1.092 1.507 1.625 1.674 5.82 1.823 3.848.136 4.697.339 4.697 1.121 0 .996-.67 1.123-5.936 1.123h-4.942L67.072 8.602l-4.7-.126-1.095 3.584c-.602 1.971-1.158 3.584-1.236 3.584-.077 0-.417-.931-.755-2.068s-.82-2.75-1.07-3.584l-.456-1.516-4.754.126-.739 2.683c-1.093 3.971-4.3 16.536-4.3 16.849 0 .198.663.253 2.502.207l2.502-.063 1.097-3.69z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 3 KiB |
33
themes/rbsimple-DE/msxturbor/systeminfo.xml
Normal file
33
themes/rbsimple-DE/msxturbor/systeminfo.xml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<theme>
|
||||||
|
<formatVersion>6</formatVersion>
|
||||||
|
|
||||||
|
<view name="system">
|
||||||
|
<text name="info1" extra="true">
|
||||||
|
<text>Manufacturer : Panasonic</text>
|
||||||
|
</text>
|
||||||
|
<text name="info2" extra="true">
|
||||||
|
<text>Year of Release : 1990</text>
|
||||||
|
</text>
|
||||||
|
<text name="info3" extra="true">
|
||||||
|
<text>OS : MSX BASIC V4.0 (32 kB)</text>
|
||||||
|
</text>
|
||||||
|
<text name="info4" extra="true">
|
||||||
|
<text>CPU : R800 (DAR800-X0G) @ 28.64 MHz and Z80A @ 3.58</text>
|
||||||
|
</text>
|
||||||
|
<text name="info5" extra="true">
|
||||||
|
<text>RAM : 256 KB (FS-A1ST) or 512 KB (FS-A1GT) / VRAM : 128 KB</text>
|
||||||
|
</text>
|
||||||
|
<text name="info6" extra="true">
|
||||||
|
<text>ROM : 96 KB</text>
|
||||||
|
</text>
|
||||||
|
<text name="info7" extra="true">
|
||||||
|
<text>GPU : Yamaha V9958</text>
|
||||||
|
</text>
|
||||||
|
<text name="info8" extra="true">
|
||||||
|
<text>Sound chip : PSG (AY-3-8910 compatible), MSX-MUSIC, PCM, MSX-MIDI</text>
|
||||||
|
</text>
|
||||||
|
<text name="info9" extra="true">
|
||||||
|
<text>Resolution : 512 x 212 (4 or 16 colors) and 256 x 212 (16 to 19268 colors)</text>
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
</theme>
|
40
themes/rbsimple-DE/msxturbor/theme.xml
Normal file
40
themes/rbsimple-DE/msxturbor/theme.xml
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
<theme>
|
||||||
|
<formatVersion>6</formatVersion>
|
||||||
|
<include>./../theme.xml</include>
|
||||||
|
<include>./colors.xml</include>
|
||||||
|
<include>./systeminfo.xml</include>
|
||||||
|
|
||||||
|
<view name="system">
|
||||||
|
<image name="controller" extra="true">
|
||||||
|
<path>./images/controller.svg</path>
|
||||||
|
</image>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view name="basic, detailed, grid, video">
|
||||||
|
<helpsystem name="help">
|
||||||
|
<textColor>262626</textColor>
|
||||||
|
<iconColor>262626</iconColor>
|
||||||
|
</helpsystem>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view name="system, basic, detailed, video">
|
||||||
|
<image name="logo">
|
||||||
|
<path>./images/logo.svg</path>
|
||||||
|
</image>
|
||||||
|
<image name="consolegame" extra="true">
|
||||||
|
<path>./images/consolegame.svg</path>
|
||||||
|
</image>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view name="basic, detailed">
|
||||||
|
<image name="console" extra="true">
|
||||||
|
<path>./images/console.svg</path>
|
||||||
|
</image>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view name="grid">
|
||||||
|
<image name="logo">
|
||||||
|
<path>./images/logo.svg</path>
|
||||||
|
</image>
|
||||||
|
</view>
|
||||||
|
</theme>
|
Loading…
Reference in a new issue