From d1034150528047b09c4ac72f55b1f7a2921294ee Mon Sep 17 00:00:00 2001 From: kervala Date: Sat, 6 Feb 2016 00:24:06 +0100 Subject: [PATCH] Fixed: Use %f to display a float --- code/ryzom/client/src/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/src/input.cpp b/code/ryzom/client/src/input.cpp index 6d0834f07..403947538 100644 --- a/code/ryzom/client/src/input.cpp +++ b/code/ryzom/client/src/input.cpp @@ -112,7 +112,7 @@ bool InitMouseWithCursor (bool hardware) } else if (width != 0 && height != 0) { - nlwarning("mouse pos %u, %u", x, y); + nlwarning("Mouse pos %f, %f", x, y); Driver->setMousePos(x / width, y / height); } }