diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-04-05 13:16:16 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-04-05 13:16:35 +0200 |
commit | 0f0c0e593303f04e3748a6038d3c502106f5face (patch) | |
tree | bfc3695f2c19698fc17582eaf21ccf16ca2d8ea0 /scene/3d | |
parent | 33b8f1448e3efd8ad71c65c3d42581fae82905a3 (diff) |
Style: Apply clang-tidy's `modernize-use-bool-literals`
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/sprite_3d.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/sprite_3d.h b/scene/3d/sprite_3d.h index b48660eb2d..d1bc8dc737 100644 --- a/scene/3d/sprite_3d.h +++ b/scene/3d/sprite_3d.h @@ -203,8 +203,8 @@ class AnimatedSprite3D : public SpriteBase3D { float timeout = 0.0; - bool hflip = 1; - bool vflip = 1; + bool hflip = true; + bool vflip = true; Color modulate; |