Qt: Port over some custom icon from PCSX2

This commit is contained in:
kamfretoz 2023-10-15 16:05:26 +07:00
parent ad04f79e57
commit 3468afc5ec
36 changed files with 562 additions and 109 deletions

View File

@ -46,7 +46,7 @@
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="gamepad-line"> <iconset theme="controller-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="toolButtonStyle"> <property name="toolButtonStyle">
@ -120,7 +120,7 @@
<string>Automatic Mapping</string> <string>Automatic Mapping</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="gamepad-line"> <iconset theme="controller-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="toolButtonStyle"> <property name="toolButtonStyle">

View File

@ -733,7 +733,7 @@ ControllerBindingWidget_Base::~ControllerBindingWidget_Base()
QIcon ControllerBindingWidget_Base::getIcon() const QIcon ControllerBindingWidget_Base::getIcon() const
{ {
return QIcon::fromTheme("BIOSSettings"); return QIcon::fromTheme("controller-strike-line");
} }
void ControllerBindingWidget_Base::initBindingWidgets() void ControllerBindingWidget_Base::initBindingWidgets()
@ -804,7 +804,7 @@ ControllerBindingWidget_DigitalController::~ControllerBindingWidget_DigitalContr
QIcon ControllerBindingWidget_DigitalController::getIcon() const QIcon ControllerBindingWidget_DigitalController::getIcon() const
{ {
return QIcon::fromTheme(QStringLiteral("gamepad-line")); return QIcon::fromTheme(QStringLiteral("controller-line"));
} }
ControllerBindingWidget_Base* ControllerBindingWidget_DigitalController::createInstance(ControllerBindingWidget* parent) ControllerBindingWidget_Base* ControllerBindingWidget_DigitalController::createInstance(ControllerBindingWidget* parent)
@ -913,7 +913,7 @@ ControllerBindingWidget_GunCon::~ControllerBindingWidget_GunCon()
QIcon ControllerBindingWidget_GunCon::getIcon() const QIcon ControllerBindingWidget_GunCon::getIcon() const
{ {
return QIcon::fromTheme(QStringLiteral("fire-line")); return QIcon::fromTheme(QStringLiteral("guncon-line"));
} }
ControllerBindingWidget_Base* ControllerBindingWidget_GunCon::createInstance(ControllerBindingWidget* parent) ControllerBindingWidget_Base* ControllerBindingWidget_GunCon::createInstance(ControllerBindingWidget* parent)

View File

@ -137,7 +137,7 @@ void GameSummaryWidget::populateUi(const std::string& path, const std::string& s
m_ui.entryType->setCurrentIndex(static_cast<int>(gentry->type)); m_ui.entryType->setCurrentIndex(static_cast<int>(gentry->type));
} }
m_ui.inputProfile->addItem(QIcon::fromTheme(QStringLiteral("gamepad-line")), tr("Use Global Settings")); m_ui.inputProfile->addItem(QIcon::fromTheme(QStringLiteral("controller-line")), tr("Use Global Settings"));
for (const std::string& name : InputManager::GetInputProfileNames()) for (const std::string& name : InputManager::GetInputProfileNames())
m_ui.inputProfile->addItem(QString::fromStdString(name)); m_ui.inputProfile->addItem(QString::fromStdString(name));
@ -181,7 +181,7 @@ void GameSummaryWidget::populateTracksInfo()
QTableWidgetItem* num = new QTableWidgetItem(tr("Track %1").arg(track)); QTableWidgetItem* num = new QTableWidgetItem(tr("Track %1").arg(track));
num->setIcon(QIcon::fromTheme((mode == CDImage::TrackMode::Audio) ? QStringLiteral("file-music-line") : num->setIcon(QIcon::fromTheme((mode == CDImage::TrackMode::Audio) ? QStringLiteral("file-music-line") :
QStringLiteral("dvd-line"))); QStringLiteral("disc-line")));
m_ui.tracks->insertRow(row); m_ui.tracks->insertRow(row);
m_ui.tracks->setItem(row, 0, num); m_ui.tracks->setItem(row, 0, num);
m_ui.tracks->setItem(row, 1, new QTableWidgetItem(track_mode_strings[static_cast<u32>(mode)])); m_ui.tracks->setItem(row, 1, new QTableWidgetItem(track_mode_strings[static_cast<u32>(mode)]));

View File

@ -39,7 +39,7 @@
<string>Change Disc</string> <string>Change Disc</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="dvd-line"> <iconset theme="disc-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<actiongroup name="actionGroupChangeDiscSubImages"/> <actiongroup name="actionGroupChangeDiscSubImages"/>
@ -54,7 +54,7 @@
<string>Cheats</string> <string>Cheats</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="flask-line"> <iconset theme="cheats-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
</widget> </widget>
@ -302,7 +302,7 @@
</action> </action>
<action name="actionStartBios"> <action name="actionStartBios">
<property name="icon"> <property name="icon">
<iconset theme="hard-drive-2-line"> <iconset theme="chip-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
@ -386,7 +386,7 @@
</action> </action>
<action name="actionBIOSSettings"> <action name="actionBIOSSettings">
<property name="icon"> <property name="icon">
<iconset theme="hard-drive-2-line"> <iconset theme="chip-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
@ -395,7 +395,7 @@
</action> </action>
<action name="actionConsoleSettings"> <action name="actionConsoleSettings">
<property name="icon"> <property name="icon">
<iconset theme="artboard-2-line"> <iconset theme="chip-2-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
@ -413,7 +413,7 @@
</action> </action>
<action name="actionControllerSettings"> <action name="actionControllerSettings">
<property name="icon"> <property name="icon">
<iconset theme="gamepad-line"> <iconset theme="controller-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
@ -526,7 +526,7 @@
</action> </action>
<action name="actionChangeDisc"> <action name="actionChangeDisc">
<property name="icon"> <property name="icon">
<iconset theme="dvd-line"> <iconset theme="disc-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
@ -535,7 +535,7 @@
</action> </action>
<action name="actionCheats"> <action name="actionCheats">
<property name="icon"> <property name="icon">
<iconset theme="flask-line"> <iconset theme="cheats-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
@ -789,7 +789,7 @@
</action> </action>
<action name="actionMemoryCardSettings"> <action name="actionMemoryCardSettings">
<property name="icon"> <property name="icon">
<iconset theme="sd-card-line"> <iconset theme="memcard-line">
<normaloff>.</normaloff>.</iconset> <normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">

View File

@ -861,7 +861,7 @@ QIcon GetIconForEntryType(GameList::EntryType type)
switch (type) switch (type)
{ {
case GameList::EntryType::Disc: case GameList::EntryType::Disc:
return QIcon::fromTheme(QStringLiteral("dvd-line")); return QIcon::fromTheme(QStringLiteral("disc-line"));
case GameList::EntryType::Playlist: case GameList::EntryType::Playlist:
return QIcon::fromTheme(QStringLiteral("play-list-2-line")); return QIcon::fromTheme(QStringLiteral("play-list-2-line"));
case GameList::EntryType::PSF: case GameList::EntryType::PSF:

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="cheats" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:none;}</style></defs><path class="cls-1" d="M0,0H24V24H0V0Z"/><g id="by_maxihplay"><path d="M14.38,5.18c.73,0,1.32,.26,1.87,.82,2.15,3.05-.83,6.31-5.25,10.57-.43,.41-.85,.82-1.25,1.22l-1.88-1.93-2.39-2.46c-.39-.4-.78-.8-1.18-1.13l.04-.04c-1.85-1.78-1.93-3.85-1.39-5.18,.22-.55,.92-1.83,2.53-1.83,.9,0,1.94,.41,3,1.17l1.22,.88,1.26-.81c1.29-.83,2.48-1.27,3.43-1.27m0-2.2c-1.49,0-3.08,.63-4.62,1.62-1.55-1.12-3.01-1.59-4.29-1.59-4.76,0-7.07,6.54-2.67,10.8,0,0,6.96,7.16,6.96,7.16,3.41-4.03,12.75-10.19,8.18-16.37-1.05-1.14-2.27-1.62-3.57-1.62h0Z"/><path d="M20.93,16.35c.72,0,1.34,.27,1.85,.8,.51,.53,.77,1.17,.77,1.92s-.26,1.39-.77,1.92-1.13,.8-1.85,.8c-.84,0-1.61-.45-2.34-1.34-.72,.9-1.5,1.34-2.34,1.34-.72,0-1.34-.27-1.85-.8s-.77-1.17-.77-1.92,.26-1.39,.77-1.92c.51-.53,1.13-.8,1.85-.8,.84,0,1.61,.45,2.34,1.34,.72-.9,1.5-1.34,2.34-1.34Zm-4.67,3.81c.48,0,.97-.36,1.45-1.09-.48-.73-.97-1.09-1.45-1.09-.21,0-.39,.05-.56,.14s-.31,.23-.41,.4-.15,.35-.15,.54c0,.3,.11,.55,.33,.77,.22,.22,.49,.32,.8,.32Zm4.67,0c.12,0,.24-.02,.36-.05s.22-.09,.31-.15,.18-.15,.25-.24,.13-.19,.16-.31,.05-.23,.05-.34c0-.3-.11-.55-.33-.77-.22-.22-.49-.32-.8-.32-.48,0-.97,.36-1.45,1.09,.48,.73,.97,1.09,1.45,1.09Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="chip-2-line.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="567.86441"
inkscape:cy="293.42373"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:none;stroke:#000000;stroke-width:32.4637;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect234"
width="308.51929"
height="308.51929"
x="101.74036"
y="95.297302" />
<path
style="fill:none;stroke:#000000;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 256,93.96059 V 14.222836"
id="path1238" />
<path
style="fill:none;stroke:#000000;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 166.59916,93.96059 V 14.222836"
id="path1240" />
<path
style="fill:none;stroke:#000000;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 256,486.13331 V 406.39556"
id="path1240-7" />
<path
style="fill:none;stroke:#000000;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 357.9661,486.13331 V 406.39556"
id="path1240-7-5" />
<path
style="fill:none;stroke:#000000;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 166.59916,486.13331 V 406.39556"
id="path1240-7-5-3" />
<path
style="fill:none;stroke:#000000;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 345.40084,93.96059 V 14.222836"
id="path1240-6" />
<path
style="fill:none;stroke:#000000;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 414.14572,249.55695 H 495.9241"
id="path1405" />
<path
style="fill:none;stroke:#000000;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 414.14572,157.93899 H 495.9241"
id="path1405-5" />
<path
style="fill:none;stroke:#000000;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 414.14572,341.17491 H 495.9241"
id="path1405-6" />
<path
style="fill:none;stroke:#000000;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 19.856543,249.55695 H 101.63492"
id="path1405-2" />
<path
style="fill:none;stroke:#000000;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 19.856542,157.93899 H 101.63492"
id="path1405-9" />
<path
style="fill:none;stroke:#000000;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 19.856541,341.17491 H 101.63492"
id="path1405-1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="chip-line-black.svg"
inkscape:export-filename="bios_exported.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="1.3037281"
inkscape:cx="212.85113"
inkscape:cy="209.39949"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect344"
width="185.14862"
height="370.29724"
x="163.42569"
y="70.222984" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 348.89389,151.29966 h 89.90694 z"
id="path1501" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 59.357612,151.29966 H 149.26455 Z"
id="path1501-3" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 353.80737,255.09921 h 87.10216 z"
id="path1503" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 360.30926,364.32434 h 82.77189 z"
id="path1505" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,255.35899 H 150.07464 Z"
id="path1501-6" />
<path
style="fill:none;stroke:#000000;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,364.32434 H 150.07464 Z"
id="path1501-7" />
<ellipse
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:24.4372;stroke-linecap:round;stroke-linejoin:round"
id="path792"
cx="225.70091"
cy="130.64618"
rx="9.3720798"
ry="8.4348745" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="controller_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{opacity:.85;}.cls-1,.cls-2{fill:none;}.cls-2{stroke:#000;stroke-width:12px;}</style></defs><path id="tela" class="cls-1" d="M0,0H150V150H0V0Z"/><path id="By_Maxihplay_and_Kam" class="cls-2" d="M16.38,67.89l-7.41,34.31s3.12,19.69,23.12,11.69l14.32-17.38s15.16,10.75,23.33-6.58h9.27s7.2,15.9,23.52,5.71l16.17,19.28s19.19,6.26,22.34-14.35l-8.46-35.01s.13-15.89-9.17-19.46l-2.95-7.73s-9.19-8.82-22.09-.84l-2.39,8.1H53.11l-2.71-8.52s-10.65-6.62-22.39,.35l-3.72,9.38s-9.11,5.46-7.91,21.05h0Z"/></svg>

After

Width:  |  Height:  |  Size: 638 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="controller_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{opacity:.85;}.cls-1,.cls-2{fill:none;}.cls-2,.cls-3{stroke:#000;stroke-width:12px;}.cls-3{stroke-linecap:round;stroke-linejoin:round;}</style></defs><path id="tela" class="cls-1" d="M0,0H150V150H0V0Z"/><path id="By_Maxihplay_and_Kam" class="cls-2" d="M16.38,67.89l-7.41,34.31s3.12,19.69,23.12,11.69l14.32-17.38s15.16,10.75,23.33-6.58h9.27s7.2,15.9,23.52,5.71l16.17,19.28s19.19,6.26,22.34-14.35l-8.46-35.01s.13-15.89-9.17-19.46l-2.95-7.73s-9.19-8.82-22.09-.84l-2.39,8.1H53.11l-2.71-8.52s-10.65-6.62-22.39,.35l-3.72,9.38s-9.11,5.46-7.91,21.05h0Z"/><path id="x" class="cls-3" d="M133.75,16.25L16.25,133.75"/></svg>

After

Width:  |  Height:  |  Size: 755 B

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
sodipodi:docname="disc-eject-line-black.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="367.72881"
inkscape:cy="258.71186"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<circle
style="fill:none;stroke:#000000;stroke-width:43.8472;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="path788"
cx="254.69832"
cy="256"
r="211.72192" />
<path
sodipodi:type="star"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:31.4605;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="path1582"
inkscape:flatsided="false"
sodipodi:sides="3"
sodipodi:cx="256"
sodipodi:cy="101.09832"
sodipodi:r1="122.9679"
sodipodi:r2="61.483952"
sodipodi:arg1="2.6179939"
sodipodi:arg2="3.6651914"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 149.50667,162.58227 202.75334,70.356346 256,-21.869583 l 53.24666,92.225926 53.24667,92.225927 -106.49333,0 z"
inkscape:transform-center-y="-19.324427"
transform="matrix(0.77253244,0,0,0.62860054,56.930019,153.80068)"
inkscape:transform-center-x="-1.607738e-06" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:17.5612;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1636"
width="169.33095"
height="28.414787"
x="170.03285"
y="315.31885" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,6 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{stroke-width:12px;}.cls-1,.cls-2,.cls-3,.cls-4{fill:none;}.cls-1,.cls-4{stroke:#000;stroke-linecap:round;stroke-linejoin:round;}.cls-2{opacity:.85;}.cls-4{stroke-width:9px;}</style></defs><g id="tela"><path id="tela-2" class="cls-2" d="M0,0H150V150H0V0Z"/></g><g id="CD_-_Pcsx2_B"><g id="tela-3"><rect id="tela-4" class="cls-3" width="150" height="150"/></g><g id="By_Kam"><circle id="interior" class="cls-1" cx="75" cy="75" r="18.29"/><path id="brilho" class="cls-4" d="M78.75,30.3c-23.59-1.7-43.98,14.54-47.18,35.98"/><circle id="exterior" class="cls-1" cx="75" cy="75" r="62.27"/></g></g></svg>
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M15 4.582V12a3 3 0 1 1-2-2.83V2.05c5.053.501 9 4.765 9 9.95 0 5.523-4.477 10-10 10S2 17.523 2 12c0-5.185 3.947-9.449 9-9.95v2.012A8.001 8.001 0 0 0 12 20a8 8 0 0 0 3-15.418z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 717 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill-rule="nonzero" d="M17 4a6 6 0 0 1 6 6v4a6 6 0 0 1-6 6H7a6 6 0 0 1-6-6v-4a6 6 0 0 1 6-6h10zm0 2H7a4 4 0 0 0-3.995 3.8L3 10v4a4 4 0 0 0 3.8 3.995L7 18h10a4 4 0 0 0 3.995-3.8L21 14v-4a4 4 0 0 0-3.8-3.995L17 6zm-7 3v2h2v2H9.999L10 15H8l-.001-2H6v-2h2V9h2zm8 4v2h-2v-2h2zm-2-4v2h-2V9h2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 435 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Aim_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{stroke-linecap:round;}.cls-1,.cls-2,.cls-3{fill:none;}.cls-1,.cls-3{stroke:#000;stroke-miterlimit:10;stroke-width:9px;}.cls-2{opacity:.85;}</style></defs><g id="tela"><path id="tela-2" class="cls-2" d="M0,0H150V150H0V0Z"/></g><g id="By_Maxihplay"><circle class="cls-3" cx="75" cy="75" r="52.18"/><circle class="cls-3" cx="75" cy="75" r="29.85"/><line class="cls-1" x1="75" y1="13.65" x2="75" y2="57.79"/><line class="cls-1" x1="75" y1="92.21" x2="75" y2="136.35"/><line class="cls-1" x1="57.71" y1="75" x2="13.56" y2="75"/><line class="cls-1" x1="136.44" y1="75" x2="92.29" y2="75"/><circle class="cls-1" cx="75" cy="75" r="1"/></g></svg>

After

Width:  |  Height:  |  Size: 775 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M5 14h14V4H5v10zm0 2v4h14v-4H5zM4 2h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm11 15h2v2h-2v-2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 271 B

View File

@ -1,6 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <?xml version="1.0" encoding="UTF-8"?><svg id="Keyboard_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{opacity:.85;}.cls-1,.cls-2{fill:none;}.cls-3{stroke-width:9px;}.cls-3,.cls-2{stroke:#000;stroke-miterlimit:10;}.cls-2{stroke-width:12px;}</style></defs><g id="tela"><path id="tela-2" class="cls-1" d="M0,0H150V150H0V0Z"/></g><g id="By_Maxihplay"><g id="teclas"><path id="espaco" d="M102.85,102.7H47.15c-1.64,0-2.96-1.51-2.96-3.37v-5.75c0-1.86,1.33-3.37,2.96-3.37h55.7c1.64,0,2.96,1.51,2.96,3.37v5.75c0,1.86-1.33,3.37-2.96,3.37Z"/><g id="baixo"><rect class="cls-3" x="30.55" y="73.44" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="51.11" y="73.54" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="71.68" y="73.34" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="92.25" y="73.63" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="112.95" y="73.78" width="6.5" height="6.5" rx=".19" ry=".19"/></g><g id="cima"><rect class="cls-3" x="30.55" y="52.39" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="51.11" y="52.49" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="71.68" y="52.3" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="92.25" y="52.59" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-3" x="112.95" y="52.74" width="6.5" height="6.5" rx=".19" ry=".19"/></g></g><rect id="externo" class="cls-2" x="12.58" y="35.55" width="124.83" height="78.9" rx="12" ry="12"/></g></svg>
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M3 17h18v2H3v-2zm0-6h3v3H3v-3zm5 0h3v3H8v-3zM3 5h3v3H3V5zm10 0h3v3h-3V5zm5 0h3v3h-3V5zm-5 6h3v3h-3v-3zm5 0h3v3h-3v-3zM8 5h3v3H8V5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 282 B

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{fill:#fff;}.cls-2{stroke:#fff;}.cls-2,.cls-3{stroke-width:9px;}.cls-2,.cls-3,.cls-4{fill:none;}.cls-3{stroke:#000;}.cls-5{fill-rule:evenodd;}</style></defs><g id="Memory_Card_-_Pcsx2_W"><g id="tela"><rect id="tela-2" class="cls-4" x="0" width="150" height="150"/></g><g id="By_Maxihplay"><g id="Formato"><path class="cls-1" d="M145.26,129.29H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59ZM23.78,32.71c-3.91,0-7.09,3.18-7.09,7.09V110.2c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-84.59H23.78Z"/></g><g id="seta"><polygon class="cls-5" points="111.66 67.01 119.89 75.72 111.66 83.64 111.66 67.01"/><polygon points="107.66 56.95 107.66 93.05 125.51 75.85 107.66 56.95 107.66 56.95"/></g><path id="etiqueta" class="cls-2" d="M63.7,49.76v50.49c0,2.65-2.15,4.81-4.81,4.81h-21.6c-2.65,0-4.81-2.15-4.81-4.81h0V49.76c0-2.65,2.15-4.81,4.81-4.81h21.6c2.65,0,4.81,2.15,4.81,4.81Z"/></g></g><g id="Memory_Card_-_Pcsx2_B"><g id="By_Maxihplay-2"><g id="Formato-2"><path d="M145.26,129.29H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59ZM23.78,32.71c-3.91,0-7.09,3.18-7.09,7.09V110.2c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-84.59H23.78Z"/></g><path id="etiqueta-2" class="cls-3" d="M63.7,49.76v50.49c0,2.65-2.15,4.81-4.81,4.81h-21.6c-2.65,0-4.81-2.15-4.81-4.81h0V49.76c0-2.65,2.15-4.81,4.81-4.81h21.6c2.65,0,4.81,2.15,4.81,4.81Z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path d="M6 7.828V20h12V4H9.828L6 7.828zm-1.707-1.12L9 2h10a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7.414a1 1 0 0 1 .293-.707zM15 5h2v4h-2V5zm-3 0h2v4h-2V5zM9 6h2v3H9V6z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 319 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="cheats" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:none;}</style></defs><path class="cls-2" d="M0,0H24V24H0V0Z"/><g id="by_maxihplay"><path class="cls-1" d="M14.38,5.18c.73,0,1.32,.26,1.87,.82,2.15,3.05-.83,6.31-5.25,10.57-.43,.41-.85,.82-1.25,1.22l-1.88-1.93-2.39-2.46c-.39-.4-.78-.8-1.18-1.13l.04-.04c-1.85-1.78-1.93-3.85-1.39-5.18,.22-.55,.92-1.83,2.53-1.83,.9,0,1.94,.41,3,1.17l1.22,.88,1.26-.81c1.29-.83,2.48-1.27,3.43-1.27m0-2.2c-1.49,0-3.08,.63-4.62,1.62-1.55-1.12-3.01-1.59-4.29-1.59-4.76,0-7.07,6.54-2.67,10.8,0,0,6.96,7.16,6.96,7.16,3.41-4.03,12.75-10.19,8.18-16.37-1.05-1.14-2.27-1.62-3.57-1.62h0Z"/><path class="cls-1" d="M20.93,16.35c.72,0,1.34,.27,1.85,.8,.51,.53,.77,1.17,.77,1.92s-.26,1.39-.77,1.92-1.13,.8-1.85,.8c-.84,0-1.61-.45-2.34-1.34-.72,.9-1.5,1.34-2.34,1.34-.72,0-1.34-.27-1.85-.8s-.77-1.17-.77-1.92,.26-1.39,.77-1.92c.51-.53,1.13-.8,1.85-.8,.84,0,1.61,.45,2.34,1.34,.72-.9,1.5-1.34,2.34-1.34Zm-4.67,3.81c.48,0,.97-.36,1.45-1.09-.48-.73-.97-1.09-1.45-1.09-.21,0-.39,.05-.56,.14s-.31,.23-.41,.4-.15,.35-.15,.54c0,.3,.11,.55,.33,.77,.22,.22,.49,.32,.8,.32Zm4.67,0c.12,0,.24-.02,.36-.05s.22-.09,.31-.15,.18-.15,.25-.24,.13-.19,.16-.31,.05-.23,.05-.34c0-.3-.11-.55-.33-.77-.22-.22-.49-.32-.8-.32-.48,0-.97,.36-1.45,1.09,.48,.73,.97,1.09,1.45,1.09Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="chip-2-line.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="519.05085"
inkscape:cy="260.88136"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:none;stroke:#ffffff;stroke-width:32.4637;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect234"
width="308.51929"
height="308.51929"
x="101.74036"
y="95.297302" />
<path
style="fill:none;stroke:#ffffff;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 256,93.96059 V 14.222836"
id="path1238" />
<path
style="fill:none;stroke:#ffffff;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 166.59916,93.96059 V 14.222836"
id="path1240" />
<path
style="fill:none;stroke:#ffffff;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 256,486.13331 V 406.39556"
id="path1240-7" />
<path
style="fill:none;stroke:#ffffff;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 357.9661,486.13331 V 406.39556"
id="path1240-7-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 166.59916,486.13331 V 406.39556"
id="path1240-7-5-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:36.5891;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 345.40084,93.96059 V 14.222836"
id="path1240-6" />
<path
style="fill:none;stroke:#ffffff;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 414.14572,249.55695 H 495.9241"
id="path1405" />
<path
style="fill:none;stroke:#ffffff;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 414.14572,157.93899 H 495.9241"
id="path1405-5" />
<path
style="fill:none;stroke:#ffffff;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 414.14572,341.17491 H 495.9241"
id="path1405-6" />
<path
style="fill:none;stroke:#ffffff;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 19.856543,249.55695 H 101.63492"
id="path1405-2" />
<path
style="fill:none;stroke:#ffffff;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 19.856542,157.93899 H 101.63492"
id="path1405-9" />
<path
style="fill:none;stroke:#ffffff;stroke-width:35.8618;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 19.856541,341.17491 H 101.63492"
id="path1405-1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="chip-line.svg"
inkscape:export-filename="bios_exported.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="1.3037281"
inkscape:cx="212.0841"
inkscape:cy="209.39949"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<rect
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect344"
width="185.14862"
height="370.29724"
x="163.42569"
y="70.222984" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 348.89389,151.29966 h 89.90694 z"
id="path1501" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 59.357612,151.29966 H 149.26455 Z"
id="path1501-3" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 353.80737,255.09921 h 87.10216 z"
id="path1503" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="m 360.30926,364.32434 h 82.77189 z"
id="path1505" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,255.35899 H 150.07464 Z"
id="path1501-6" />
<path
style="fill:none;stroke:#ffffff;stroke-width:28.005;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
d="M 60.167703,364.32434 H 150.07464 Z"
id="path1501-7" />
<ellipse
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:24.4372;stroke-linecap:round;stroke-linejoin:round"
id="path792"
cx="225.70091"
cy="130.64618"
rx="9.3720798"
ry="8.4348745" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="controller_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{stroke:#fff;stroke-width:12px;}.cls-1,.cls-2{fill:none;}.cls-2{opacity:.85;}</style></defs><path id="tela" class="cls-2" d="M0,0H150V150H0V0Z"/><path id="By_Maxihplay_and_Kam" class="cls-1" d="M16.38,67.89l-7.41,34.31s3.12,19.69,23.12,11.69l14.32-17.38s15.16,10.75,23.33-6.58h9.27s7.2,15.9,23.52,5.71l16.17,19.28s19.19,6.26,22.34-14.35l-8.46-35.01s.13-15.89-9.17-19.46l-2.95-7.73s-9.19-8.82-22.09-.84l-2.39,8.1H53.11l-2.71-8.52s-10.65-6.62-22.39,.35l-3.72,9.38s-9.11,5.46-7.91,21.05h0Z"/></svg>

After

Width:  |  Height:  |  Size: 638 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="controller_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1,.cls-2{fill:none;}.cls-1,.cls-3{stroke:#fff;stroke-width:12px;}.cls-2{opacity:.85;}.cls-3{fill:#fff;stroke-linecap:round;stroke-linejoin:round;}</style></defs><path id="tela" class="cls-2" d="M0,0H150V150H0V0Z"/><path id="By_Maxihplay_and_Kam" class="cls-1" d="M16.38,67.89l-7.41,34.31s3.12,19.69,23.12,11.69l14.32-17.38s15.16,10.75,23.33-6.58h9.27s7.2,15.9,23.52,5.71l16.17,19.28s19.19,6.26,22.34-14.35l-8.46-35.01s.13-15.89-9.17-19.46l-2.95-7.73s-9.19-8.82-22.09-.84l-2.39,8.1H53.11l-2.71-8.52s-10.65-6.62-22.39,.35l-3.72,9.38s-9.11,5.46-7.91,21.05h0Z"/><path id="x" class="cls-3" d="M133.75,16.25L16.25,133.75"/></svg>

After

Width:  |  Height:  |  Size: 765 B

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="512"
height="512"
viewBox="0 0 512 512"
version="1.1"
id="svg5"
sodipodi:docname="disc-eject.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#505050"
bordercolor="#ffffff"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#505050"
inkscape:document-units="px"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="367.72881"
inkscape:cy="258.71186"
inkscape:window-width="1920"
inkscape:window-height="956"
inkscape:window-x="0"
inkscape:window-y="42"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<circle
style="fill:none;stroke:#ffffff;stroke-width:43.8472;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="path788"
cx="254.69832"
cy="256"
r="211.72192" />
<path
sodipodi:type="star"
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:31.4605;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="path1582"
inkscape:flatsided="false"
sodipodi:sides="3"
sodipodi:cx="256"
sodipodi:cy="101.09832"
sodipodi:r1="122.9679"
sodipodi:r2="61.483952"
sodipodi:arg1="2.6179939"
sodipodi:arg2="3.6651914"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 149.50667,162.58227 202.75334,70.356346 256,-21.869583 l 53.24666,92.225926 53.24667,92.225927 -106.49333,0 z"
inkscape:transform-center-y="-19.324427"
transform="matrix(0.77253244,0,0,0.62860054,56.930019,153.80068)"
inkscape:transform-center-x="-1.607738e-06" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:17.5612;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
id="rect1636"
width="169.33095"
height="28.414787"
x="170.03285"
y="315.31885" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,6 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{opacity:.85;}.cls-1,.cls-2,.cls-3,.cls-4{fill:none;}.cls-2{stroke-width:12px;}.cls-2,.cls-3{stroke:#fff;stroke-linecap:round;stroke-linejoin:round;}.cls-3{stroke-width:9px;}</style></defs><g id="tela"><path id="tela-2" class="cls-1" d="M0,0H150V150H0V0Z"/></g><g id="CD_-_Pcsx2_W"><g id="tela-3"><rect id="tela-4" class="cls-4" width="150" height="150"/></g><g id="By_Kam"><circle id="interior" class="cls-2" cx="75" cy="75" r="18.29"/><path id="brilho" class="cls-3" d="M78.75,30.3c-23.59-1.7-43.98,14.54-47.18,35.98"/><circle id="exterior" class="cls-2" cx="75" cy="75" r="62.27"/></g></g></svg>
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="#ffffff" d="M15 4.582V12a3 3 0 1 1-2-2.83V2.05c5.053.501 9 4.765 9 9.95 0 5.523-4.477 10-10 10S2 17.523 2 12c0-5.185 3.947-9.449 9-9.95v2.012A8.001 8.001 0 0 0 12 20a8 8 0 0 0 3-15.418z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 340 B

After

Width:  |  Height:  |  Size: 717 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="#ffffff" d="M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm1-9h3l-5 7v-5H8l5-7v5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 298 B

View File

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 23a7.5 7.5 0 0 0 7.5-7.5c0-.866-.23-1.697-.5-2.47-1.667 1.647-2.933 2.47-3.8 2.47 3.995-7 1.8-10-4.2-14 .5 5-2.796 7.274-4.138 8.537A7.5 7.5 0 0 0 12 23zm.71-17.765c3.241 2.75 3.257 4.887.753 9.274-.761 1.333.202 2.991 1.737 2.991.688 0 1.384-.2 2.119-.595a5.5 5.5 0 1 1-9.087-5.412c.126-.118.765-.685.793-.71.424-.38.773-.717 1.118-1.086 1.23-1.318 2.114-2.78 2.566-4.462z" fill="#ffffff"/></svg>

Before

Width:  |  Height:  |  Size: 530 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="#ffffff" fill-rule="nonzero" d="M17 4a6 6 0 0 1 6 6v4a6 6 0 0 1-6 6H7a6 6 0 0 1-6-6v-4a6 6 0 0 1 6-6h10zm0 2H7a4 4 0 0 0-3.995 3.8L3 10v4a4 4 0 0 0 3.8 3.995L7 18h10a4 4 0 0 0 3.995-3.8L21 14v-4a4 4 0 0 0-3.8-3.995L17 6zm-7 3v2h2v2H9.999L10 15H8l-.001-2H6v-2h2V9h2zm8 4v2h-2v-2h2zm-2-4v2h-2V9h2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 450 B

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Aim_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1{opacity:.85;}.cls-1,.cls-2,.cls-3{fill:none;}.cls-2{stroke-linecap:round;}.cls-2,.cls-3{stroke:#fff;stroke-miterlimit:10;stroke-width:9px;}</style></defs><g id="tela"><path id="tela-2" class="cls-1" d="M0,0H150V150H0V0Z"/></g><g id="By_Maxihplay"><circle class="cls-3" cx="75" cy="75" r="52.18"/><circle class="cls-3" cx="75" cy="75" r="29.85"/><line class="cls-2" x1="75" y1="13.65" x2="75" y2="57.79"/><line class="cls-2" x1="75" y1="92.21" x2="75" y2="136.35"/><line class="cls-2" x1="57.71" y1="75" x2="13.56" y2="75"/><line class="cls-2" x1="136.44" y1="75" x2="92.29" y2="75"/><circle class="cls-2" cx="75" cy="75" r="1"/></g></svg>

After

Width:  |  Height:  |  Size: 775 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="#ffffff" d="M5 14h14V4H5v10zm0 2v4h14v-4H5zM4 2h16a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm11 15h2v2h-2v-2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 286 B

View File

@ -1,6 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <?xml version="1.0" encoding="UTF-8"?><svg id="Keyboard_-_Pcsx2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1,.cls-2{fill:#fff;}.cls-2{stroke-width:9px;}.cls-2,.cls-3{stroke:#fff;stroke-miterlimit:10;}.cls-4{opacity:.85;}.cls-4,.cls-3{fill:none;}.cls-3{stroke-width:12px;}</style></defs><g id="tela"><path id="tela-2" class="cls-4" d="M0,0H150V150H0V0Z"/></g><g id="By_Maxihplay"><g id="teclas"><path id="espaco" class="cls-1" d="M102.85,102.7H47.15c-1.64,0-2.96-1.51-2.96-3.37v-5.75c0-1.86,1.33-3.37,2.96-3.37h55.7c1.64,0,2.96,1.51,2.96,3.37v5.75c0,1.86-1.33,3.37-2.96,3.37Z"/><g id="baixo"><rect class="cls-2" x="30.55" y="73.44" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="51.11" y="73.54" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="71.68" y="73.34" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="92.25" y="73.63" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="112.95" y="73.78" width="6.5" height="6.5" rx=".19" ry=".19"/></g><g id="cima"><rect class="cls-2" x="30.55" y="52.39" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="51.11" y="52.49" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="71.68" y="52.3" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="92.25" y="52.59" width="6.5" height="6.5" rx=".19" ry=".19"/><rect class="cls-2" x="112.95" y="52.74" width="6.5" height="6.5" rx=".19" ry=".19"/></g></g><rect id="externo" class="cls-3" x="12.58" y="35.55" width="124.83" height="78.9" rx="12" ry="12"/></g></svg>
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="#ffffff" d="M3 17h18v2H3v-2zm0-6h3v3H3v-3zm5 0h3v3H8v-3zM3 5h3v3H3V5zm10 0h3v3h-3V5zm5 0h3v3h-3V5zm-5 6h3v3h-3v-3zm5 0h3v3h-3v-3zM8 5h3v3H8V5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 297 B

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg id="Memory_Card_-_Pcsx2_W" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><style>.cls-1,.cls-2{fill:#fff;}.cls-3{stroke:#fff;stroke-width:9px;}.cls-3,.cls-4{fill:none;}.cls-2{fill-rule:evenodd;}</style></defs><g id="tela"><rect id="tela-2" class="cls-4" x="0" width="150" height="150"/></g><g id="By_Maxihplay"><g id="Formato"><path class="cls-1" d="M145.26,129.29H23.78c-10.53,0-19.09-8.56-19.09-19.09V39.8c0-10.53,8.56-19.09,19.09-19.09h121.53l-.05,108.59ZM23.78,32.71c-3.91,0-7.09,3.18-7.09,7.09V110.2c0,3.91,3.18,7.09,7.09,7.09h109.48l.04-84.59H23.78Z"/></g><g id="seta"><polygon class="cls-2" points="111.66 67.01 119.89 75.72 111.66 83.64 111.66 67.01"/><polygon class="cls-1" points="107.66 56.95 107.66 93.05 125.51 75.85 107.66 56.95 107.66 56.95"/></g><path id="etiqueta" class="cls-3" d="M63.7,49.76v50.49c0,2.65-2.15,4.81-4.81,4.81h-21.6c-2.65,0-4.81-2.15-4.81-4.81h0V49.76c0-2.65,2.15-4.81,4.81-4.81h21.6c2.65,0,4.81,2.15,4.81,4.81Z"/></g></svg>

After

Width:  |  Height:  |  Size: 1017 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<g>
<path fill="none" d="M0 0h24v24H0z"/>
<path fill="#ffffff" d="M6 7.828V20h12V4H9.828L6 7.828zm-1.707-1.12L9 2h10a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7.414a1 1 0 0 1 .293-.707zM15 5h2v4h-2V5zm-3 0h2v4h-2V5zM9 6h2v3H9V6z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 334 B

View File

@ -27,7 +27,6 @@
<file>icons/black/16/AddGameDirectory.png</file> <file>icons/black/16/AddGameDirectory.png</file>
<file>icons/black/16/AdvancedSettings.png</file> <file>icons/black/16/AdvancedSettings.png</file>
<file>icons/black/16/AudioSettings.png</file> <file>icons/black/16/AudioSettings.png</file>
<file>icons/black/16/BIOSSettings.png</file>
<file>icons/black/16/ChangeDisc.png</file> <file>icons/black/16/ChangeDisc.png</file>
<file>icons/black/16/Cheats.png</file> <file>icons/black/16/Cheats.png</file>
<file>icons/black/16/Clear.png</file> <file>icons/black/16/Clear.png</file>
@ -68,7 +67,6 @@
<file>icons/black/32/AddGameDirectory.png</file> <file>icons/black/32/AddGameDirectory.png</file>
<file>icons/black/32/AdvancedSettings.png</file> <file>icons/black/32/AdvancedSettings.png</file>
<file>icons/black/32/AudioSettings.png</file> <file>icons/black/32/AudioSettings.png</file>
<file>icons/black/32/BIOSSettings.png</file>
<file>icons/black/32/ChangeDisc.png</file> <file>icons/black/32/ChangeDisc.png</file>
<file>icons/black/32/Cheats.png</file> <file>icons/black/32/Cheats.png</file>
<file>icons/black/32/Clear.png</file> <file>icons/black/32/Clear.png</file>
@ -109,7 +107,6 @@
<file>icons/black/64/AddGameDirectory.png</file> <file>icons/black/64/AddGameDirectory.png</file>
<file>icons/black/64/AdvancedSettings.png</file> <file>icons/black/64/AdvancedSettings.png</file>
<file>icons/black/64/AudioSettings.png</file> <file>icons/black/64/AudioSettings.png</file>
<file>icons/black/64/BIOSSettings.png</file>
<file>icons/black/64/ChangeDisc.png</file> <file>icons/black/64/ChangeDisc.png</file>
<file>icons/black/64/Cheats.png</file> <file>icons/black/64/Cheats.png</file>
<file>icons/black/64/Clear.png</file> <file>icons/black/64/Clear.png</file>
@ -148,16 +145,19 @@
<file>icons/black/64/StartfileSettings.png</file> <file>icons/black/64/StartfileSettings.png</file>
<file>icons/black/index.theme</file> <file>icons/black/index.theme</file>
<file>icons/black/svg/arrow-left-right-line.svg</file> <file>icons/black/svg/arrow-left-right-line.svg</file>
<file>icons/black/svg/artboard-2-line.svg</file>
<file>icons/black/svg/book-open-line.svg</file> <file>icons/black/svg/book-open-line.svg</file>
<file>icons/black/svg/brush-line.svg</file> <file>icons/black/svg/brush-line.svg</file>
<file>icons/black/svg/cheats-line.svg</file>
<file>icons/black/svg/checkbox-multiple-blank-line.svg</file> <file>icons/black/svg/checkbox-multiple-blank-line.svg</file>
<file>icons/black/svg/chip-line.svg</file>
<file>icons/black/svg/chip-2-line.svg</file>
<file>icons/black/svg/close-line.svg</file> <file>icons/black/svg/close-line.svg</file>
<file>icons/black/svg/controller-line.svg</file>
<file>icons/black/svg/controller-strike-line.svg</file>
<file>icons/black/svg/dashboard-line.svg</file> <file>icons/black/svg/dashboard-line.svg</file>
<file>icons/black/svg/disc-line.svg</file> <file>icons/black/svg/disc-line.svg</file>
<file>icons/black/svg/door-open-line.svg</file> <file>icons/black/svg/door-open-line.svg</file>
<file>icons/black/svg/download-2-line.svg</file> <file>icons/black/svg/download-2-line.svg</file>
<file>icons/black/svg/dvd-line.svg</file>
<file>icons/black/svg/eject-line.svg</file> <file>icons/black/svg/eject-line.svg</file>
<file>icons/black/svg/file-add-line.svg</file> <file>icons/black/svg/file-add-line.svg</file>
<file>icons/black/svg/file-line.svg</file> <file>icons/black/svg/file-line.svg</file>
@ -168,23 +168,21 @@
<file>icons/black/svg/file-settings-line.svg</file> <file>icons/black/svg/file-settings-line.svg</file>
<file>icons/black/svg/file-unknow-line.svg</file> <file>icons/black/svg/file-unknow-line.svg</file>
<file>icons/black/svg/filter-line.svg</file> <file>icons/black/svg/filter-line.svg</file>
<file>icons/black/svg/fire-line.svg</file>
<file>icons/black/svg/flashlight-line.svg</file> <file>icons/black/svg/flashlight-line.svg</file>
<file>icons/black/svg/flask-line.svg</file>
<file>icons/black/svg/folder-add-line.svg</file> <file>icons/black/svg/folder-add-line.svg</file>
<file>icons/black/svg/folder-open-line.svg</file> <file>icons/black/svg/folder-open-line.svg</file>
<file>icons/black/svg/folder-reduce-line.svg</file> <file>icons/black/svg/folder-reduce-line.svg</file>
<file>icons/black/svg/folder-settings-line.svg</file> <file>icons/black/svg/folder-settings-line.svg</file>
<file>icons/black/svg/fullscreen-line.svg</file> <file>icons/black/svg/fullscreen-line.svg</file>
<file>icons/black/svg/function-line.svg</file> <file>icons/black/svg/function-line.svg</file>
<file>icons/black/svg/gamepad-line.svg</file>
<file>icons/black/svg/global-line.svg</file> <file>icons/black/svg/global-line.svg</file>
<file>icons/black/svg/hard-drive-2-line.svg</file> <file>icons/black/svg/guncon-line.svg</file>
<file>icons/black/svg/image-fill.svg</file> <file>icons/black/svg/image-fill.svg</file>
<file>icons/black/svg/keyboard-line.svg</file> <file>icons/black/svg/keyboard-line.svg</file>
<file>icons/black/svg/layout-grid-line.svg</file> <file>icons/black/svg/layout-grid-line.svg</file>
<file>icons/black/svg/lightbulb-line.svg</file> <file>icons/black/svg/lightbulb-line.svg</file>
<file>icons/black/svg/list-check.svg</file> <file>icons/black/svg/list-check.svg</file>
<file>icons/black/svg/memcard-line.svg</file>
<file>icons/black/svg/mouse-line.svg</file> <file>icons/black/svg/mouse-line.svg</file>
<file>icons/black/svg/paint-brush-line.svg</file> <file>icons/black/svg/paint-brush-line.svg</file>
<file>icons/black/svg/paint-fill.svg</file> <file>icons/black/svg/paint-fill.svg</file>
@ -198,7 +196,6 @@
<file>icons/black/svg/restart-line.svg</file> <file>icons/black/svg/restart-line.svg</file>
<file>icons/black/svg/save-3-line.svg</file> <file>icons/black/svg/save-3-line.svg</file>
<file>icons/black/svg/screenshot-2-line.svg</file> <file>icons/black/svg/screenshot-2-line.svg</file>
<file>icons/black/svg/sd-card-line.svg</file>
<file>icons/black/svg/settings-3-line.svg</file> <file>icons/black/svg/settings-3-line.svg</file>
<file>icons/black/svg/settings-5-line.svg</file> <file>icons/black/svg/settings-5-line.svg</file>
<file>icons/black/svg/shut-down-line.svg</file> <file>icons/black/svg/shut-down-line.svg</file>
@ -359,7 +356,6 @@
<file>icons/white/16/AddGameDirectory.png</file> <file>icons/white/16/AddGameDirectory.png</file>
<file>icons/white/16/AdvancedSettings.png</file> <file>icons/white/16/AdvancedSettings.png</file>
<file>icons/white/16/AudioSettings.png</file> <file>icons/white/16/AudioSettings.png</file>
<file>icons/white/16/BIOSSettings.png</file>
<file>icons/white/16/ChangeDisc.png</file> <file>icons/white/16/ChangeDisc.png</file>
<file>icons/white/16/Cheats.png</file> <file>icons/white/16/Cheats.png</file>
<file>icons/white/16/Clear.png</file> <file>icons/white/16/Clear.png</file>
@ -400,7 +396,6 @@
<file>icons/white/32/AddGameDirectory.png</file> <file>icons/white/32/AddGameDirectory.png</file>
<file>icons/white/32/AdvancedSettings.png</file> <file>icons/white/32/AdvancedSettings.png</file>
<file>icons/white/32/AudioSettings.png</file> <file>icons/white/32/AudioSettings.png</file>
<file>icons/white/32/BIOSSettings.png</file>
<file>icons/white/32/ChangeDisc.png</file> <file>icons/white/32/ChangeDisc.png</file>
<file>icons/white/32/Cheats.png</file> <file>icons/white/32/Cheats.png</file>
<file>icons/white/32/Clear.png</file> <file>icons/white/32/Clear.png</file>
@ -441,7 +436,6 @@
<file>icons/white/64/AddGameDirectory.png</file> <file>icons/white/64/AddGameDirectory.png</file>
<file>icons/white/64/AdvancedSettings.png</file> <file>icons/white/64/AdvancedSettings.png</file>
<file>icons/white/64/AudioSettings.png</file> <file>icons/white/64/AudioSettings.png</file>
<file>icons/white/64/BIOSSettings.png</file>
<file>icons/white/64/ChangeDisc.png</file> <file>icons/white/64/ChangeDisc.png</file>
<file>icons/white/64/Cheats.png</file> <file>icons/white/64/Cheats.png</file>
<file>icons/white/64/Clear.png</file> <file>icons/white/64/Clear.png</file>
@ -480,16 +474,19 @@
<file>icons/white/64/StartfileSettings.png</file> <file>icons/white/64/StartfileSettings.png</file>
<file>icons/white/index.theme</file> <file>icons/white/index.theme</file>
<file>icons/white/svg/arrow-left-right-line.svg</file> <file>icons/white/svg/arrow-left-right-line.svg</file>
<file>icons/white/svg/artboard-2-line.svg</file>
<file>icons/white/svg/book-open-line.svg</file> <file>icons/white/svg/book-open-line.svg</file>
<file>icons/white/svg/brush-line.svg</file> <file>icons/white/svg/brush-line.svg</file>
<file>icons/white/svg/cheats-line.svg</file>
<file>icons/white/svg/chip-line.svg</file>
<file>icons/white/svg/chip-2-line.svg</file>
<file>icons/white/svg/checkbox-multiple-blank-line.svg</file> <file>icons/white/svg/checkbox-multiple-blank-line.svg</file>
<file>icons/white/svg/close-line.svg</file> <file>icons/white/svg/close-line.svg</file>
<file>icons/white/svg/controller-line.svg</file>
<file>icons/white/svg/controller-strike-line.svg</file>
<file>icons/white/svg/dashboard-line.svg</file> <file>icons/white/svg/dashboard-line.svg</file>
<file>icons/white/svg/disc-line.svg</file> <file>icons/white/svg/disc-line.svg</file>
<file>icons/white/svg/door-open-line.svg</file> <file>icons/white/svg/door-open-line.svg</file>
<file>icons/white/svg/download-2-line.svg</file> <file>icons/white/svg/download-2-line.svg</file>
<file>icons/white/svg/dvd-line.svg</file>
<file>icons/white/svg/eject-line.svg</file> <file>icons/white/svg/eject-line.svg</file>
<file>icons/white/svg/file-add-line.svg</file> <file>icons/white/svg/file-add-line.svg</file>
<file>icons/white/svg/file-line.svg</file> <file>icons/white/svg/file-line.svg</file>
@ -500,23 +497,21 @@
<file>icons/white/svg/file-settings-line.svg</file> <file>icons/white/svg/file-settings-line.svg</file>
<file>icons/white/svg/file-unknow-line.svg</file> <file>icons/white/svg/file-unknow-line.svg</file>
<file>icons/white/svg/filter-line.svg</file> <file>icons/white/svg/filter-line.svg</file>
<file>icons/white/svg/fire-line.svg</file>
<file>icons/white/svg/flashlight-line.svg</file> <file>icons/white/svg/flashlight-line.svg</file>
<file>icons/white/svg/flask-line.svg</file>
<file>icons/white/svg/folder-add-line.svg</file> <file>icons/white/svg/folder-add-line.svg</file>
<file>icons/white/svg/folder-open-line.svg</file> <file>icons/white/svg/folder-open-line.svg</file>
<file>icons/white/svg/folder-reduce-line.svg</file> <file>icons/white/svg/folder-reduce-line.svg</file>
<file>icons/white/svg/folder-settings-line.svg</file> <file>icons/white/svg/folder-settings-line.svg</file>
<file>icons/white/svg/fullscreen-line.svg</file> <file>icons/white/svg/fullscreen-line.svg</file>
<file>icons/white/svg/function-line.svg</file> <file>icons/white/svg/function-line.svg</file>
<file>icons/white/svg/gamepad-line.svg</file>
<file>icons/white/svg/global-line.svg</file> <file>icons/white/svg/global-line.svg</file>
<file>icons/white/svg/hard-drive-2-line.svg</file> <file>icons/white/svg/guncon-line.svg</file>
<file>icons/white/svg/image-fill.svg</file> <file>icons/white/svg/image-fill.svg</file>
<file>icons/white/svg/keyboard-line.svg</file> <file>icons/white/svg/keyboard-line.svg</file>
<file>icons/white/svg/layout-grid-line.svg</file> <file>icons/white/svg/layout-grid-line.svg</file>
<file>icons/white/svg/lightbulb-line.svg</file> <file>icons/white/svg/lightbulb-line.svg</file>
<file>icons/white/svg/list-check.svg</file> <file>icons/white/svg/list-check.svg</file>
<file>icons/white/svg/memcard-line.svg</file>
<file>icons/white/svg/mouse-line.svg</file> <file>icons/white/svg/mouse-line.svg</file>
<file>icons/white/svg/paint-brush-line.svg</file> <file>icons/white/svg/paint-brush-line.svg</file>
<file>icons/white/svg/paint-fill.svg</file> <file>icons/white/svg/paint-fill.svg</file>
@ -530,7 +525,6 @@
<file>icons/white/svg/restart-line.svg</file> <file>icons/white/svg/restart-line.svg</file>
<file>icons/white/svg/save-3-line.svg</file> <file>icons/white/svg/save-3-line.svg</file>
<file>icons/white/svg/screenshot-2-line.svg</file> <file>icons/white/svg/screenshot-2-line.svg</file>
<file>icons/white/svg/sd-card-line.svg</file>
<file>icons/white/svg/settings-3-line.svg</file> <file>icons/white/svg/settings-3-line.svg</file>
<file>icons/white/svg/settings-5-line.svg</file> <file>icons/white/svg/settings-5-line.svg</file>
<file>icons/white/svg/shut-down-line.svg</file> <file>icons/white/svg/shut-down-line.svg</file>

View File

@ -81,11 +81,11 @@ void SettingsDialog::addPages()
} }
addWidget(m_bios_settings = new BIOSSettingsWidget(this, m_ui.settingsContainer), tr("BIOS"), addWidget(m_bios_settings = new BIOSSettingsWidget(this, m_ui.settingsContainer), tr("BIOS"),
QStringLiteral("hard-drive-2-line"), QStringLiteral("chip-line"),
tr("<strong>BIOS Settings</strong><hr>These options control which BIOS is used and how it will be " tr("<strong>BIOS Settings</strong><hr>These options control which BIOS is used and how it will be "
"patched.<br><br>Mouse over an option for additional information.")); "patched.<br><br>Mouse over an option for additional information."));
addWidget(m_console_settings = new ConsoleSettingsWidget(this, m_ui.settingsContainer), tr("Console"), addWidget(m_console_settings = new ConsoleSettingsWidget(this, m_ui.settingsContainer), tr("Console"),
QStringLiteral("artboard-2-line"), QStringLiteral("chip-2-line"),
tr("<strong>Console Settings</strong><hr>These options determine the configuration of the simulated " tr("<strong>Console Settings</strong><hr>These options determine the configuration of the simulated "
"console.<br><br>Mouse over an option for additional information.")); "console.<br><br>Mouse over an option for additional information."));
addWidget(m_emulation_settings = new EmulationSettingsWidget(this, m_ui.settingsContainer), tr("Emulation"), addWidget(m_emulation_settings = new EmulationSettingsWidget(this, m_ui.settingsContainer), tr("Emulation"),
@ -94,7 +94,7 @@ void SettingsDialog::addPages()
"system.<br><br>Mouse over an option for additional information.")); "system.<br><br>Mouse over an option for additional information."));
addWidget( addWidget(
m_memory_card_settings = new MemoryCardSettingsWidget(this, m_ui.settingsContainer), tr("Memory Cards"), m_memory_card_settings = new MemoryCardSettingsWidget(this, m_ui.settingsContainer), tr("Memory Cards"),
QStringLiteral("sd-card-line"), QStringLiteral("memcard-line"),
tr("<strong>Memory Card Settings</strong><hr>This page lets you control what mode the memory card emulation will " tr("<strong>Memory Card Settings</strong><hr>This page lets you control what mode the memory card emulation will "
"function in, and where the images for these cards will be stored on disk.")); "function in, and where the images for these cards will be stored on disk."));
addWidget( addWidget(

View File

@ -451,7 +451,7 @@
<string>Automatic Mapping</string> <string>Automatic Mapping</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="gamepad-line" /> <iconset theme="controller-line" />
</property> </property>
<property name="toolButtonStyle"> <property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum> <enum>Qt::ToolButtonTextBesideIcon</enum>
@ -514,7 +514,7 @@
<string>Automatic Mapping</string> <string>Automatic Mapping</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="gamepad-line" /> <iconset theme="controller-line" />
</property> </property>
<property name="toolButtonStyle"> <property name="toolButtonStyle">
<enum>Qt::ToolButtonTextBesideIcon</enum> <enum>Qt::ToolButtonTextBesideIcon</enum>