mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-16 09:12:35 +00:00
Fixed crash on Windows due to not ensuring file mode is binary for saving app icons
This commit is contained in:
@@ -134,7 +134,7 @@ class W3DHub
|
||||
if image_bmp?(image)
|
||||
to_rgba32_blob(image).save(filename)
|
||||
else
|
||||
File.write(filename, image_data(image))
|
||||
File.open(filename, "wb") { |f| f.write(image_data(image)) }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user