diff --git a/projects/wobble_bobble/src/main.cpp b/projects/wobble_bobble/src/main.cpp
index 27080d74d428b27c43205935e884a3e5792f9542..893c867f7eba055c789c21c608c173e9118c1698 100644
--- a/projects/wobble_bobble/src/main.cpp
+++ b/projects/wobble_bobble/src/main.cpp
@@ -796,9 +796,9 @@ int main(int argc, const char **argv) {
 		ImGui::Begin("Settings");
 		
 		ImGui::BeginGroup();
-		ImGui::Combo("Mode", &(sim->mode), "Random\0Ordered", 2);
-		ImGui::Combo("Form", &(sim->form), "Sphere\0Cube", 2);
-		ImGui::Combo("Type", &(sim->type), "Hyperelastic\0Fluid", 2);
+		ImGui::Combo("Mode", &(sim->mode), "Random\0Ordered\0", 2);
+		ImGui::Combo("Form", &(sim->form), "Sphere\0Cube\0", 2);
+		ImGui::Combo("Type", &(sim->type), "Hyperelastic\0Fluid\0", 2);
 		ImGui::EndGroup();
 		
 		ImGui::Spacing();