1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Really fixed the evil bug.

This commit is contained in:
Michał W. Urbańczyk
2009-01-30 22:23:13 +00:00
parent 8868105fac
commit f28c76984c
3 changed files with 10 additions and 5 deletions

View File

@@ -34,7 +34,10 @@ void CClient::init()
serv = NULL;
gs = NULL;
cb = NULL;
shared = new SharedMem();
try
{
shared = new SharedMem();
} HANDLE_EXCEPTION
}
CClient::CClient(void)