summaryrefslogtreecommitdiff
path: root/wx+/image_resources.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/image_resources.cpp')
-rw-r--r--wx+/image_resources.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/image_resources.cpp b/wx+/image_resources.cpp
index 089acf4e..3a7ba3ee 100644
--- a/wx+/image_resources.cpp
+++ b/wx+/image_resources.cpp
@@ -89,8 +89,8 @@ void GlobalResources::init(const Zstring& filepath)
wxImage img(streamIn, wxBITMAP_TYPE_PNG);
//end this alpha/no-alpha/mask/wxDC::DrawBitmap/RTL/high-contrast-scheme interoperability nightmare here and now!!!!
- //=> there's only one type of png image: with alpha channel, no mask!!!
- convertToVanillaImage(img);
+ //=> there's only one type of png image: with alpha channel, no mask!!!
+ convertToVanillaImage(img);
bitmaps.emplace(name, img);
}
bgstack15