From 03937c4f58465cb0fe7492feb17f19e81eee6abb Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 19 Mar 2022 09:54:49 +0200 Subject: [PATCH] Fix a copy-paste error --- demos/forestpond/source/forestpond.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/forestpond/source/forestpond.cpp b/demos/forestpond/source/forestpond.cpp index e480d209..39f4ce6c 100644 --- a/demos/forestpond/source/forestpond.cpp +++ b/demos/forestpond/source/forestpond.cpp @@ -15,7 +15,7 @@ ForestPond::ForestPond(int, char **): camera(resources.get("Camera.camera")) { window.set_title("Forest Pond"); - window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &DesertPillars::exit), 0)); + window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &ForestPond::exit), 0)); GL::SequenceBuilder seq_bld(resources.get("Forest.seq")); seq_bld.set_debug_name("Main sequence"); -- 2.43.0