1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 03:29:16 +02:00

Added optional km/mi markers

closes #84
This commit is contained in:
2019-05-23 08:44:55 +02:00
parent 3f97d12a76
commit c688b5fc09
14 changed files with 167 additions and 22 deletions

View File

@ -17,7 +17,7 @@ int str2int(const char *str, int len)
return res;
}
double niceNum(double x, int round)
double niceNum(double x, bool round)
{
int expv;
double f;

View File

@ -2,6 +2,6 @@
#define UTIL_H
int str2int(const char *str, int len);
double niceNum(double x, int round);
double niceNum(double x, bool round);
#endif // UTIL_H