Unverified Commit ed471828 by Rémi Verschelde Committed by GitHub

Merge pull request #39470 from aaronfranke/valid-image

Simplify some code in platform/uwp/export
parents 46e0e132 06805400
......@@ -743,23 +743,7 @@ class EditorExportPlatformUWP : public EditorExportPlatform {
// TODO: Add resource creation or image rescaling to enable other scales:
// 1.25, 1.5, 2.0
real_t scales[] = { 1.0 };
bool valid_w = false;
bool valid_h = false;
for (int i = 0; i < 1; i++) {
int w = ceil(p_width * scales[i]);
int h = ceil(p_height * scales[i]);
if (w == p_image->get_width()) {
valid_w = true;
}
if (h == p_image->get_height()) {
valid_h = true;
}
}
return valid_w && valid_h;
return p_width == p_image->get_width() && p_height == p_image->get_height();
}
Vector<uint8_t> _fix_manifest(const Ref<EditorExportPreset> &p_preset, const Vector<uint8_t> &p_template, bool p_give_internet) const {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment