Moved test data set into an #if block

This makes testing a bit easier, only the #if 1 line has to
be modified
This commit is contained in:
Gergely Polonkai 2013-07-26 16:47:44 +02:00
parent 49a752fafa
commit 3fc05c926e

View File

@ -212,12 +212,14 @@ main(int argc, char *argv[])
#error "You need Clutter >= 1.3.6 to compile this software"
#endif
int year = 1983,
month = 3,
day = 7,
hour = 11,
min = 54,
sec = 45;
#if 1
year = 1983;
month = 3;
day = 7;
hour = 11;
min = 54;
#endif
double timezone = 1.0,
lon = 19.081599,
lat = 47.462485,