mirror of
https://github.com/godotengine/godot.git
synced 2025-01-04 01:00:44 +00:00
this failed in msvc, didn't in linux and mingw
This commit is contained in:
parent
5f1ae5eac2
commit
a5fe71a0e9
@ -1128,10 +1128,7 @@ Error EditorExportPlatform::save_zip(const String& p_path, bool p_make_bundles)
|
||||
|
||||
zipClose(zip,NULL);
|
||||
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
Error EditorExportPlatform::save_pack(FileAccess *dst,bool p_make_bundles, int p_alignment) {
|
||||
|
@ -1773,7 +1773,7 @@ void ScriptEditor::_update_script_colors() {
|
||||
if (h>hist_size) {
|
||||
continue;
|
||||
}
|
||||
float v = Math::ease((edit_pass-pass)/float_t(hist_size),0.4);
|
||||
float v = Math::ease((edit_pass-pass)/float(hist_size),0.4);
|
||||
|
||||
|
||||
script_list->set_item_custom_bg_color(i,hot_color.linear_interpolate(cold_color,v));
|
||||
|
Loading…
Reference in New Issue
Block a user