Fixed win32 config saving, keyboard mapping, and AltGr bugs.

Made extensive changes to the launcher to provide more control
over setting up auto-start and it now saves configuration to
the user's documents directory if auto-starting at login and
saves to the system directory if auto-starting at boot.
Replaced MapVirtualKey() with table lookup to work around that
function's lack of support for extended keyboard scan codes.
Added first cut at support for AltGr.
This commit is contained in:
crs
2002-09-02 17:30:04 +00:00
parent c95e991aeb
commit a729e33cfb
23 changed files with 1455 additions and 1052 deletions

View File

@@ -511,7 +511,7 @@ CClient::runServer()
for (;;) {
try {
// allow connect this much time to succeed
CTimerThread timer(m_camp ? -1.0 : 30.0);
CTimerThread timer(15.0);
// create socket and attempt to connect to server
log((CLOG_DEBUG1 "connecting to server"));
@@ -532,7 +532,7 @@ CClient::runServer()
}
// we're camping. wait a bit before retrying
CThread::sleep(5.0);
CThread::sleep(15.0);
}
}