use z0 parameters on z0

This commit is contained in:
Dennis Luxen 2014-01-23 13:20:57 +01:00
parent 058219528d
commit 34e2ef13cf

View File

@ -61,7 +61,7 @@ struct RouteParameters {
std::vector<FixedPointCoordinate> coordinates;
void setZoomLevel(const short i) {
if (18 > i && 0 < i) {
if (18 >= i && 0 <= i) {
zoomLevel = i;
}
}