Merge pull request #272 from mjbudd77/master

Added fceux name and version information to the main window title bar…
This commit is contained in:
mjbudd77 2020-12-21 00:23:10 -05:00 committed by GitHub
commit 1709fb7990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@
#include "../../fceu.h"
#include "../../fds.h"
#include "../../movie.h"
#include "../../version.h"
#ifdef _S9XLUA_H
#include "../../fceulua.h"
@ -98,6 +99,7 @@ consoleWin_t::consoleWin_t(QWidget *parent)
setCentralWidget(viewport_GL);
}
setWindowTitle( tr(FCEU_NAME_AND_VERSION) );
setWindowIcon(QIcon(":fceux1.png"));
gameTimer = new QTimer( this );