mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-04 22:42:28 +02:00
don't add extra newlines when downloading scripts via tpt.getscript
This commit is contained in:
parent
dc679d7eb0
commit
9a9f80fefa
@ -1901,7 +1901,7 @@ int luatpt_getscript(lua_State* l)
|
||||
outputfile = NULL;
|
||||
if (!confirmPrompt || ConfirmPrompt::Blocking("File already exists, overwrite?", filename, "Overwrite"))
|
||||
{
|
||||
outputfile = fopen(filename, "w");
|
||||
outputfile = fopen(filename, "wb");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1911,7 +1911,7 @@ int luatpt_getscript(lua_State* l)
|
||||
}
|
||||
else
|
||||
{
|
||||
outputfile = fopen(filename, "w");
|
||||
outputfile = fopen(filename, "wb");
|
||||
}
|
||||
if (!outputfile)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user