Skip to content

Commit

Permalink
Change image filename
Browse files Browse the repository at this point in the history
  • Loading branch information
dh4 committed Mar 9, 2014
1 parent 3bd18de commit b723e41
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes
2 changes: 1 addition & 1 deletion resources/mupen64plusqt.qrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<RCC>
<qresource prefix="/">
<file>images/mupen64.png</file>
<file>images/mupen64plus.png</file>
<file>other/LICENSE</file>
</qresource>
</RCC>
2 changes: 1 addition & 1 deletion src/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent)
aboutLayout = new QGridLayout(this);

icon = new QLabel(this);
icon->setPixmap(QPixmap(":/images/mupen64.png"));
icon->setPixmap(QPixmap(":/images/mupen64plus.png"));

QFile licenseFile(":/other/LICENSE");
licenseFile.open(QIODevice::ReadOnly);
Expand Down
2 changes: 1 addition & 1 deletion src/mupen64plusqt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Mupen64PlusQt::Mupen64PlusQt(QWidget *parent) : QMainWindow(parent)
{
setWindowTitle(tr("Mupen64Plus-Qt"));
setWindowIcon(QIcon(":/images/mupen64.png"));
setWindowIcon(QIcon(":/images/mupen64plus.png"));

romPath = SETTINGS.value("Paths/roms","").toString();
romDir = QDir(romPath);
Expand Down

0 comments on commit b723e41

Please sign in to comment.