Skip to content

Commit

Permalink
Mac OS X: Use Section Sign as the default console activation key
Browse files Browse the repository at this point in the history
On the Mac keyboard it is located left of the "1" key.
  • Loading branch information
skyjake committed Apr 1, 2012
1 parent 2d44dcc commit e40c2dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doomsday/engine/portable/src/con_main.c
Expand Up @@ -144,7 +144,11 @@ byte ConsoleSilent = false;
int conCompMode = 0; // Completion mode.
byte conSilentCVars = 1;
byte consoleDump = true;
#ifndef MACOSX
int consoleActiveKey = '`'; // Tilde.
#else
int consoleActiveKey = DDKEY_SECTION; // Left of the "1" key.
#endif
byte consoleSnapBackOnPrint = false;

char* prbuff = NULL; // Print buffer, used by conPrintf.
Expand Down

0 comments on commit e40c2dd

Please sign in to comment.