diff --git a/tessellation/tessellation.cpp b/tessellation/tessellation.cpp index 158a1d94..ce682ec9 100644 --- a/tessellation/tessellation.cpp +++ b/tessellation/tessellation.cpp @@ -558,8 +558,10 @@ public: ss << std::setprecision(2) << std::fixed << uboTC.tessLevel; #if defined(__ANDROID__) textOverlay->addText("Tessellation level: " + ss.str() + " (Buttons L1/R1 to change)", 5.0f, 85.0f, VulkanTextOverlay::alignLeft); + textOverlay->addText("Press \"Button X\" to toggle splitscreen", 5.0f, 100.0f, VulkanTextOverlay::alignLeft); #else textOverlay->addText("Tessellation level: " + ss.str() + " (NUMPAD +/- to change)", 5.0f, 85.0f, VulkanTextOverlay::alignLeft); + textOverlay->addText("Press \"s\" to toggle splitscreen", 5.0f, 100.0f, VulkanTextOverlay::alignLeft); #endif }