Browse Source

* write physical key numbers both in decimal and hex

git-svn-id: branches/unicodekvm@40093 -
nickysn 6 years ago
parent
commit
c5e35e8d11
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rtl-console/tests/kbd1.pp

+ 1 - 1
packages/rtl-console/tests/kbd1.pp

@@ -25,7 +25,7 @@ begin
     kbFnKey:
       Writeln('Function key');
     kbPhys:
-      Writeln('Physical key $' + HexStr(K and $FFFF, 4));
+      Writeln('Physical key ', K and $FFFF, ' - $' + HexStr(K and $FFFF, 4));
   end;
   if (GetKeyEventFlags(K) and kbReleased) <> 0 then
     Writeln('Released key event');