# HG changeset patch # User sheepluva # Date 1319676425 -7200 # Node ID a6186a8ba90a8ffeb303125133bdbd812c10d79f # Parent efe2e2f7cabf76f3e58057c257bb4ce774abd0a1 having ctrl+w close the engine is just mean... many WASD players think the game crashes all the time because of that - since they close it by accident again and again... diff -r efe2e2f7cabf -r a6186a8ba90a hedgewars/uKeys.pas --- a/hedgewars/uKeys.pas Wed Oct 26 11:50:03 2011 +0200 +++ b/hedgewars/uKeys.pas Thu Oct 27 02:47:05 2011 +0200 @@ -129,7 +129,7 @@ end; {$ENDIF} -// ctrl/cmd + w/q to close engine and/or frontend +// ctrl/cmd + q to close engine and frontend {$IFDEF DARWIN} if ((tkbdn[KeyNameToCode('left_meta')] = 1) or (tkbdn[KeyNameToCode('right_meta')] = 1)) then {$ELSE} @@ -137,7 +137,6 @@ {$ENDIF} begin if tkbdn[KeyNameToCode('q')] = 1 then ParseCommand ('halt', true) - else if tkbdn[KeyNameToCode('w')] = 1 then ParseCommand ('forcequit', true); end; // now process strokes