diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-11-18 19:17:29 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-11-18 19:17:29 -0300 |
commit | e82afd9c50ecc6033c0487df09a1005a4e7786f2 (patch) | |
tree | f73847531f3ff0d59183da1de9c029d4c1f73c7b | |
parent | 536daca8f6c83ffd85ce3c3057d1f14639051c25 (diff) | |
parent | 4621d30d1b63c510c9928d073ef88be5b59248c0 (diff) |
Merge pull request #2629 from firefly2442/float-to-bool
float to bool variable type, fixes: #2478
-rw-r--r-- | servers/visual/rasterizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/visual/rasterizer.h b/servers/visual/rasterizer.h index e22b3c3a6c..aca301e0a8 100644 --- a/servers/visual/rasterizer.h +++ b/servers/visual/rasterizer.h @@ -693,7 +693,7 @@ public: Rect2 rect; RID texture; float margin[4]; - float draw_center; + bool draw_center; Color color; CommandStyle() { draw_center=true; type = TYPE_STYLE; } }; |