aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2019-03-10 18:50:29 +0100
committerAndre Weissflog <floooh@gmail.com>2019-03-10 18:50:29 +0100
commitdf8a866d67c69715fec041273b47b143e2cbb615 (patch)
tree8154f2281b589204fd4034f66e817f227838d6d3
parent66fb9b63206e5215bb667a95beff2883ca6ef0da (diff)
sokol_imgui.h: fix typo for a resource debug label
-rw-r--r--util/sokol_imgui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sokol_imgui.h b/util/sokol_imgui.h
index 794d95e3..7a11e586 100644
--- a/util/sokol_imgui.h
+++ b/util/sokol_imgui.h
@@ -494,7 +494,7 @@ SOKOL_API_IMPL void simgui_setup(const simgui_desc_t* desc) {
pip_desc.blend.color_format = _simgui.desc.color_format;
pip_desc.blend.depth_format = _simgui.desc.depth_format;
pip_desc.rasterizer.sample_count = _simgui.desc.sample_count;
- pip_desc.label = "sokol-imgui-pipelne";
+ pip_desc.label = "sokol-imgui-pipeline";
_simgui.pip = sg_make_pipeline(&pip_desc);
sg_pop_debug_group();