From 6f08d76ca8fa4286325714791a09ffdee7181daa Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 5 Dec 2023 16:31:52 +1100 Subject: [PATCH] Cleanup: quiet warning --- source/blender/draw/engines/eevee_next/eevee_sync.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/draw/engines/eevee_next/eevee_sync.cc b/source/blender/draw/engines/eevee_next/eevee_sync.cc index abd820d2b84..0f8befb3923 100644 --- a/source/blender/draw/engines/eevee_next/eevee_sync.cc +++ b/source/blender/draw/engines/eevee_next/eevee_sync.cc @@ -59,7 +59,7 @@ ObjectHandle &SyncModule::sync_object(const ObjectRef &ob_ref) WorldHandle SyncModule::sync_world() { WorldHandle handle; - handle.recalc = world_updated_ ? ID_RECALC_SHADING : 0; + handle.recalc = world_updated_ ? int(ID_RECALC_SHADING) : 0; world_updated_ = false; return handle; }