diff options
Diffstat (limited to 'editor/imgui-editors.cpp')
-rw-r--r-- | editor/imgui-editors.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui-editors.cpp b/editor/imgui-editors.cpp index 7dbef176..f4b546f1 100644 --- a/editor/imgui-editors.cpp +++ b/editor/imgui-editors.cpp @@ -34,7 +34,7 @@ StringView scenery_type_to_string(const scenery_& sc) } StringView scenery_path(const wall_info* wa) { return wa->atlas->name(); } -StringView scenery_name(StringView name, const scenery_& sc) { return sc.descr; } +StringView scenery_name(StringView, const scenery_& sc) { return sc.descr; } StringView scenery_name(StringView, const vobj_& vobj) { return vobj.descr; } StringView scenery_name(StringView, const wall_info* w) { return w->descr; } std::shared_ptr<anim_atlas> get_atlas(const scenery_& sc) { return sc.proto.atlas; } |