mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-21 12:11:07 +00:00
Fix several bugs from iodoom3 bugtracker
rhyskidd@gmail.com found them (with PVS studio IIRC), reported them and posted patches. Some of the patches were incorrect so I rewrote them.
This commit is contained in:
parent
d51c05c768
commit
ca4b20eb08
1 changed files with 5 additions and 4 deletions
|
@ -1257,8 +1257,8 @@ bool idGameLocal::InitFromSaveGame( const char *mapName, idRenderWorld *renderWo
|
|||
|
||||
if ( !InhibitEntitySpawn( mapEnt->epairs ) ) {
|
||||
CacheDictionaryMedia( &mapEnt->epairs );
|
||||
const char *classname = mapEnt->epairs.GetString( "classname" );
|
||||
if ( classname != '\0' ) {
|
||||
const char *classname;
|
||||
if ( mapEnt->epairs.GetString( "classname", "", &classname ) ) {
|
||||
FindEntityDef( classname, false );
|
||||
}
|
||||
}
|
||||
|
@ -1626,8 +1626,9 @@ void idGameLocal::GetShakeSounds( const idDict *dict ) {
|
|||
const char *soundShaderName;
|
||||
idStr soundName;
|
||||
|
||||
soundShaderName = dict->GetString( "s_shader" );
|
||||
if ( soundShaderName != '\0' && dict->GetFloat( "s_shakes" ) != 0.0f ) {
|
||||
if ( dict->GetString( "s_shader", "", &soundShaderName )
|
||||
&& dict->GetFloat( "s_shakes" ) != 0.0f )
|
||||
{
|
||||
soundShader = declManager->FindSound( soundShaderName );
|
||||
|
||||
for ( int i = 0; i < soundShader->GetNumSounds(); i++ ) {
|
||||
|
|
Loading…
Reference in a new issue