mirror of
https://github.com/TTimo/doom3.gpl.git
synced 2026-03-20 08:59:42 +01:00
Merge pull request #31 from xoddark/Werror_conversion-null
Fix conversion-null warning
This commit is contained in:
@@ -2489,7 +2489,7 @@ void idAI::Event_ThrowMoveable( void ) {
|
||||
}
|
||||
if ( moveable ) {
|
||||
moveable->Unbind();
|
||||
moveable->PostEventMS( &EV_SetOwner, 200, NULL );
|
||||
moveable->PostEventMS( &EV_SetOwner, 200, 0 );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2510,7 +2510,7 @@ void idAI::Event_ThrowAF( void ) {
|
||||
}
|
||||
if ( af ) {
|
||||
af->Unbind();
|
||||
af->PostEventMS( &EV_SetOwner, 200, NULL );
|
||||
af->PostEventMS( &EV_SetOwner, 200, 0 );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user