This commit is contained in:
Henrik Rydgård 2023-04-29 16:15:36 +02:00
parent 7fb5ba8cd5
commit 91be4cfeb6

View File

@ -384,7 +384,7 @@ void System_ShowKeyboard() {
void System_Vibrate(int length_ms) {
char temp[32];
snprintf(temp, sizeof(temp), "%", length_ms);
snprintf(temp, sizeof(temp), "%d", length_ms);
PushCommand("vibrate", temp);
}