1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Remove duplicate WARN_PRINT macro.

This commit is contained in:
Marcel Admiraal
2019-11-07 09:44:15 +01:00
parent 5af3b4ca27
commit f0db13502a
37 changed files with 64 additions and 69 deletions

View File

@@ -47,7 +47,7 @@ Error ImageLoaderHDR::load_image(Ref<Image> p_image, FileAccess *f, bool p_force
if (line.begins_with("FORMAT=")) { // leave option to implement other commands
ERR_FAIL_COND_V_MSG(line != "FORMAT=32-bit_rle_rgbe", ERR_FILE_UNRECOGNIZED, "Only 32-bit_rle_rgbe is supported for HDR files.");
} else if (!line.begins_with("#")) { // not comment
WARN_PRINTS("Ignoring unsupported header information in HDR: " + line + ".");
WARN_PRINT("Ignoring unsupported header information in HDR: " + line + ".");
}
}