NetPlayClient: Rename time variables to be more self-explanatory

This commit is contained in:
Lioncash 2015-05-23 22:58:39 -04:00
parent 6dd10033d3
commit 1d2b29734a
1 changed files with 4 additions and 4 deletions

View File

@ -392,10 +392,10 @@ unsigned int NetPlayClient::OnData(sf::Packet& packet)
packet >> tmp;
g_NetPlaySettings.m_EXIDevice[1] = (TEXIDevices)tmp;
u32 x, y;
packet >> x;
packet >> y;
g_netplay_initial_gctime = x | ((u64)y << 32);
u32 time_low, time_high;
packet >> time_low;
packet >> time_high;
g_netplay_initial_gctime = time_low | ((u64)time_high << 32);
}
m_dialog->OnMsgStartGame();