mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
MSVC2017 Qt buildfix
This commit is contained in:
parent
0e66da3930
commit
20a96e2632
@ -69,7 +69,9 @@ extern "C" {
|
|||||||
#include "../../../config.def.h"
|
#include "../../../config.def.h"
|
||||||
#include "../../../tasks/task_content.h"
|
#include "../../../tasks/task_content.h"
|
||||||
#include "../../../tasks/tasks_internal.h"
|
#include "../../../tasks/tasks_internal.h"
|
||||||
|
#ifdef HAVE_GIT_VERSION
|
||||||
#include "../../../version_git.h"
|
#include "../../../version_git.h"
|
||||||
|
#endif
|
||||||
#include <string/stdstring.h>
|
#include <string/stdstring.h>
|
||||||
#include <encodings/utf.h>
|
#include <encodings/utf.h>
|
||||||
#include <file/file_path.h>
|
#include <file/file_path.h>
|
||||||
@ -3016,7 +3018,9 @@ void MainWindow::showAbout()
|
|||||||
QString text = QString("RetroArch ") + PACKAGE_VERSION +
|
QString text = QString("RetroArch ") + PACKAGE_VERSION +
|
||||||
"<br><br>" + "<a href=\"http://www.libretro.com/\">www.libretro.com</a>"
|
"<br><br>" + "<a href=\"http://www.libretro.com/\">www.libretro.com</a>"
|
||||||
"<br><br>" + "<a href=\"http://www.retroarch.com/\">www.retroarch.com</a>"
|
"<br><br>" + "<a href=\"http://www.retroarch.com/\">www.retroarch.com</a>"
|
||||||
|
#ifdef HAVE_GIT_VERSION
|
||||||
"<br><br>" + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION) + ": " + retroarch_git_version +
|
"<br><br>" + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION) + ": " + retroarch_git_version +
|
||||||
|
#endif
|
||||||
"<br>" + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE) + ": " + __DATE__;
|
"<br>" + msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE) + ": " + __DATE__;
|
||||||
QLabel *label = new QLabel(text, dialog.data());
|
QLabel *label = new QLabel(text, dialog.data());
|
||||||
QPixmap pix = getInvader();
|
QPixmap pix = getInvader();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user