summaryrefslogtreecommitdiffstats
path: root/src/yuzu/about_dialog.cpp
blob: 3efa65a381d613c57a34aa129637b72ecbb29076 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <QIcon>
#include "common/scm_rev.h"
#include "ui_aboutdialog.h"
#include "yuzu/about_dialog.h"

AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent), ui(new Ui::AboutDialog) {
    ui->setupUi(this);
    ui->labelLogo->setPixmap(QIcon::fromTheme("yuzu").pixmap(200));
    ui->labelBuildInfo->setText(
        ui->labelBuildInfo->text().arg(Common::g_build_fullname, Common::g_scm_branch,
                                       Common::g_scm_desc, QString(Common::g_build_date).left(10)));
}

AboutDialog::~AboutDialog() = default;