mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Fix TGA file writing on Windows
Before this patch, the tga_encoder mod would write corrupted TGA files on Windows: Bytes that looked like newlines were replaced by a carriage return and a newline.
This commit is contained in:
parent
3f60b5baa6
commit
adb8e45d67
1 changed files with 1 additions and 1 deletions
2
init.lua
2
init.lua
|
@ -84,7 +84,7 @@ function image:encode()
|
|||
end
|
||||
|
||||
function image:save(filename)
|
||||
local f = assert(io.open(filename, "w"))
|
||||
local f = assert(io.open(filename, "wb"))
|
||||
f:write(self.data)
|
||||
f:close()
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue