diff --git a/3rdparty/nanosvg b/3rdparty/nanosvg index ccdb199513..93ce879dc4 160000 --- a/3rdparty/nanosvg +++ b/3rdparty/nanosvg @@ -1 +1 @@ -Subproject commit ccdb1995134d340a93fb20e3a3d323ccb3838dd0 +Subproject commit 93ce879dc4c04a3ef1758428ec80083c38610b1f diff --git a/tests/graphics/bmpbundle.cpp b/tests/graphics/bmpbundle.cpp index 6154c071d2..ece2a3d670 100644 --- a/tests/graphics/bmpbundle.cpp +++ b/tests/graphics/bmpbundle.cpp @@ -396,7 +396,7 @@ TEST_CASE("BitmapBundle::FromSVG-alpha", "[bmpbundle][svg][alpha]") // alpha pixel values in wxImage, allowing for roundoff error. CHECK( (int)img.GetRed(0, 1) >= 0x3c ); CHECK( (int)img.GetRed(0, 1) <= 0x3f ); - CHECK( (int)img.GetGreen(0, 1) >= 0x7c ); + CHECK( (int)img.GetGreen(0, 1) >= 0x7b ); CHECK( (int)img.GetGreen(0, 1) <= 0x7f); CHECK( (int)img.GetBlue(0, 1) == 0xff ); }