tools/drawMapTest/main.cpp
author sheepluva
Sun, 23 Feb 2014 19:15:39 +0100
changeset 10155 ac01a2aeff69
parent 4425 2314bb0c433d
permissions -rw-r--r--
change how textures from non-power-of-2-width textures are filled. this fixes e.g. the vertical lines appearing between Bath theme's horizontL

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

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