From f69d7c700699435590bef114f9bbd0b096d539df Mon Sep 17 00:00:00 2001 From: Ian Curtis Date: Mon, 8 Jun 2020 10:14:03 +0000 Subject: [PATCH] fix output values --- Src/Inputs/InputSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Inputs/InputSystem.cpp b/Src/Inputs/InputSystem.cpp index e92b741..4c2ba68 100644 --- a/Src/Inputs/InputSystem.cpp +++ b/Src/Inputs/InputSystem.cpp @@ -2090,7 +2090,7 @@ Repeat: { if (firstOut) puts(""); - printf(" [value: %d, min: %d, %max: %d]\n", joyVal, minVal, maxVal); + printf(" [value: %d, min: %d, max: %d]\n", joyVal, minVal, maxVal); firstOut = false; }