Style: Enforce use of bool literals instead of integers

Using clang-tidy's `modernize-use-bool-literals`.
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-bool-literals.html
This commit is contained in:
Rémi Verschelde
2021-05-04 16:28:24 +02:00
parent a828398655
commit b4af1eba0a
29 changed files with 47 additions and 47 deletions

View File

@@ -220,7 +220,7 @@ Error ImageLoaderTGA::convert_to_image(Ref<Image> p_image, const uint8_t *p_buff
image_data_w.release();
p_image->create(width, height, 0, Image::FORMAT_RGBA8, image_data);
p_image->create(width, height, false, Image::FORMAT_RGBA8, image_data);
return OK;
}