Fix simulate window title.

PiperOrigin-RevId: 465763279
Change-Id: I21405891071ae151c057c40725be645fc28cd748
This commit is contained in:
Yuval Tassa
2022-08-06 07:52:31 -07:00
committed by Copybara-Service
parent a6841120f8
commit 4d24d56c64
+1 -1
View File
@@ -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);
}