From 624bce6b4d2d731700408b8685fcfc7ffbf7f0e2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 26 Jun 2021 21:38:33 +1000 Subject: Cleanup: redundant use of static constant --- source/blender/blenloader/intern/versioning_260.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source') diff --git a/source/blender/blenloader/intern/versioning_260.c b/source/blender/blenloader/intern/versioning_260.c index c19ef1be7c4..f2ad61f8674 100644 --- a/source/blender/blenloader/intern/versioning_260.c +++ b/source/blender/blenloader/intern/versioning_260.c @@ -2614,9 +2614,9 @@ void do_versions_after_linking_260(Main *bmain) float input_locx = 1000000.0f, input_locy = 0.0f; float output_locx = -1000000.0f, output_locy = 0.0f; - /* rough guess, not nice but we don't have access to UI constants here ... */ - static const float offsetx = 42 + 3 * 20 + 20; - // static const float offsety = 0.0f; + /* Rough guess, not nice but we don't have access to UI constants here. */ + const float offsetx = 42 + 3 * 20 + 20; + // const float offsety = 0.0f; if (create_io_nodes) { if (ntree->inputs.first) { -- cgit v1.2.3