1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-28 12:09:15 +02:00

Added support for BSB charts maps

This commit is contained in:
2020-11-27 01:11:50 +01:00
parent 609e73256a
commit 96733883cb
11 changed files with 560 additions and 24 deletions

View File

@ -13,6 +13,11 @@ namespace Color
return (0xFF000000 | r << 16 | g << 8 | b);
}
inline QRgb rgb(quint32 r, quint32 g, quint32 b)
{
return (0xFF000000 | r << 16 | g << 8 | b);
}
}
#endif // COLOR_H