Added a higher resolution icon to project.
This commit is contained in:
parent
71f64529bf
commit
44750bf88f
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
|
@ -1,5 +1,6 @@
|
||||||
<!DOCTYPE RCC><RCC version="1.0">
|
<!DOCTYPE RCC><RCC version="1.0">
|
||||||
<qresource>
|
<qresource>
|
||||||
<file>fceux.png</file>
|
<file>fceux.png</file>
|
||||||
|
<file>fceux1.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
|
@ -41,7 +41,7 @@ AboutWindow::AboutWindow(QWidget *parent)
|
||||||
QVBoxLayout *mainLayout;
|
QVBoxLayout *mainLayout;
|
||||||
QHBoxLayout *hbox1;
|
QHBoxLayout *hbox1;
|
||||||
//QPixmap pm( icon_xpm );
|
//QPixmap pm( icon_xpm );
|
||||||
QPixmap pm(":fceux.png");
|
QPixmap pm(":fceux1.png");
|
||||||
QPixmap pm2;
|
QPixmap pm2;
|
||||||
QLabel *lbl;
|
QLabel *lbl;
|
||||||
QTextEdit *credits;
|
QTextEdit *credits;
|
||||||
|
|
|
@ -36,7 +36,7 @@ consoleWin_t::consoleWin_t(QWidget *parent)
|
||||||
//viewport = new ConsoleViewSDL_t(this);
|
//viewport = new ConsoleViewSDL_t(this);
|
||||||
|
|
||||||
setCentralWidget(viewport);
|
setCentralWidget(viewport);
|
||||||
setWindowIcon(QIcon(":fceux.png"));
|
setWindowIcon(QIcon(":fceux1.png"));
|
||||||
|
|
||||||
gameTimer = new QTimer( this );
|
gameTimer = new QTimer( this );
|
||||||
mutex = new QMutex( QMutex::NonRecursive );
|
mutex = new QMutex( QMutex::NonRecursive );
|
||||||
|
|
Loading…
Reference in New Issue