Skip to content

Commit 74c9925

Browse files
committed
update MDAL to 0.0.8 (fix projection issue)
1 parent 5dffeaa commit 74c9925

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

external/mdal/mdal.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ static MDAL_Status sLastStatus;
1818

1919
const char *MDAL_Version()
2020
{
21-
return "0.0.7";
21+
return "0.0.8";
2222
}
2323

2424
MDAL_Status MDAL_LastStatus()

external/mdal/mdal_utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ MDAL::BBox MDAL::computeExtent( const MDAL::Vertices &vertices )
191191
{
192192
BBox b;
193193

194-
if ( vertices.empty() == 0 )
194+
if ( vertices.empty() )
195195
return b;
196196

197197
b.minX = vertices[0].x;

0 commit comments

Comments
 (0)