When pressing keyboard key 'q', output prewarp configuration and exit program.

This commit is contained in:
Peter Rekdal Sunde
2015-07-09 14:48:13 +02:00
parent ae78d52c7e
commit a9bc2042e3

View File

@@ -382,7 +382,10 @@ int main(int argc, char** argv) {
if (c == 'o') if (c == 'o')
{ {
cout << "prewarp = " << get_config() << endl; cout << "prewarp = " << get_config() << endl;
} else if (c == 'q')
{
cout << "prewarp = " << get_config() << endl;
break;
} }
} }