From 4d24d56c64acd67ef68e3e1969e82fc8a59bf1a0 Mon Sep 17 00:00:00 2001 From: Yuval Tassa Date: Sat, 6 Aug 2022 07:52:31 -0700 Subject: [PATCH] Fix `simulate` window title. PiperOrigin-RevId: 465763279 Change-Id: I21405891071ae151c057c40725be645fc28cd748 --- simulate/simulate.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulate/simulate.cc b/simulate/simulate.cc index 3bd22bfd..bd7aa01c 100644 --- a/simulate/simulate.cc +++ b/simulate/simulate.cc @@ -1613,7 +1613,7 @@ void Simulate::loadmodel() { // set window title to model name if (this->window && this->m->names) { - char title[200] = "this : "; + char title[200] = "Simulate : "; mju::strcat_arr(title, this->m->names); glfwSetWindowTitle(this->window, title); }