mirror of
https://github.com/rehlds/rehlds.git
synced 2025-01-04 02:55:50 +03:00
Fixed #2: NPE in CPlayingEngExtInterceptor::setCurrentTm()
This commit is contained in:
parent
29e76e1420
commit
78b1785e7d
@ -527,7 +527,7 @@ void CPlayingEngExtInterceptor::setCurrentHostent(hostent_data_t* data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CPlayingEngExtInterceptor::setCurrentTm(struct tm* t) {
|
void CPlayingEngExtInterceptor::setCurrentTm(struct tm* t) {
|
||||||
memcpy(&m_CurrentTm, 0, sizeof(m_CurrentTm));
|
memcpy(&m_CurrentTm, t, sizeof(m_CurrentTm));
|
||||||
}
|
}
|
||||||
|
|
||||||
void CPlayingEngExtInterceptor::SteamAPI_SetBreakpadAppID(uint32 unAppID) {
|
void CPlayingEngExtInterceptor::SteamAPI_SetBreakpadAppID(uint32 unAppID) {
|
||||||
|
Loading…
Reference in New Issue
Block a user