From 402ae12db214d127a246c8e3e28cd0ca81e7bc1f Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Wed, 15 Jan 2020 12:54:06 +0100 Subject: [PATCH] Fix algorithm switching --- sandboxes/opencsg/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sandboxes/opencsg/main.cpp b/sandboxes/opencsg/main.cpp index a0d5c4ceb..ec6c01789 100644 --- a/sandboxes/opencsg/main.cpp +++ b/sandboxes/opencsg/main.cpp @@ -387,8 +387,8 @@ void MyFrame::read_csg_settings(const wxCmdLineParser &parser) void MyFrame::set_renderer_algorithm(const wxString &alg) { - long alg_idx = get_idx("EnricoShader", CSG_ALGS); - if (alg_idx < 0 || alg_idx >= CSG_ALGS.size()) return; + long alg_idx = get_idx(alg, CSG_ALGS); + if (alg_idx < 0 || alg_idx >= long(CSG_ALGS.size())) return; // If there is a valid display in place, save its camera. auto cam = m_canvas->get_display() ?