From 1a11d67d5846c5715df05c6d0c3b6eeeb3f9711a Mon Sep 17 00:00:00 2001 From: PatR Date: Wed, 26 Aug 2020 14:47:02 -0700 Subject: [PATCH] fix commented-out debugging code I was actually using fprintf(stderr,...) when testing and didn't retry this bit after changing it to raw_printf(...). It's commented out but needs fixing. --- win/Qt/qt_key.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/Qt/qt_key.cpp b/win/Qt/qt_key.cpp index 480fe7f4f..f882b458e 100644 --- a/win/Qt/qt_key.cpp +++ b/win/Qt/qt_key.cpp @@ -25,7 +25,7 @@ bool NetHackQtKeyBuffer::Full() const { return (in+1)%maxkey==out; } void NetHackQtKeyBuffer::Put(int k, int a, uint kbstate) { - //raw_fprintf("k:%3d a:%3d s:0x%08x\n", k, a, kbstate); + //raw_printf("k:%3d a:%3d s:0x%08x", k, a, kbstate); if ( Full() ) return; // Safety key[in] = k; ascii[in] = a;