tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Jul 2019 19:40:40 +0200
changeset 15272 3053d07a7840
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix bad pixel offsets in CPU flag preview

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}