tools/drawMapTest/main.cpp
author nemo
Mon, 14 Nov 2011 22:38:24 -0500
changeset 6383 c34a8b98d78c
parent 4425 2314bb0c433d
permissions -rw-r--r--
increase land tex size to 512, which is the current minimum required just to load a hat. On my system max fps rose from 840 to 890 - about 6% change. also a nil check, probably not needed.

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

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