mirror of
https://github.com/vcmi/vcmi.git
synced 2025-06-15 00:05:02 +02:00
* version set 0.73b
* config entry for 1600x1200 resolution * several fixes * http://vcmi.antypika.aplus.pl/forum/viewtopic.php?p=3185#3185
This commit is contained in:
@ -95,10 +95,12 @@ void CClient::init()
|
||||
}
|
||||
|
||||
CClient::CClient(void)
|
||||
:waitingRequest(false)
|
||||
{
|
||||
init();
|
||||
}
|
||||
CClient::CClient(CConnection *con, StartInfo *si)
|
||||
:waitingRequest(false)
|
||||
{
|
||||
init();
|
||||
newGame(con,si);
|
||||
@ -418,5 +420,16 @@ void CClient::serialize( Handler &h, const int version )
|
||||
}
|
||||
}
|
||||
|
||||
//void CClient::sendRequest( const CPackForServer *request, bool waitForRealization )
|
||||
//{
|
||||
// if(waitForRealization)
|
||||
// waitingRequest.set(true);
|
||||
//
|
||||
// *serv << request;
|
||||
//
|
||||
// if(waitForRealization)
|
||||
// waitingRequest.waitWhileTrue();
|
||||
//}
|
||||
|
||||
template void CClient::serialize( CISer<CLoadFile> &h, const int version );
|
||||
template void CClient::serialize( COSer<CSaveFile> &h, const int version );
|
||||
|
Reference in New Issue
Block a user