mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-03 22:41:41 +00:00
- Delete all players upon engine shutdown.
This commit is contained in:
parent
23d4cbc3bd
commit
7953fe7425
2 changed files with 7 additions and 2 deletions
|
@ -10,6 +10,7 @@ struct CorePlayer
|
|||
PlayerAngles Angles;
|
||||
DCoreActor* actor;
|
||||
|
||||
virtual ~CorePlayer() { if (actor) actor->Destroy(); };
|
||||
virtual DCoreActor* GetActor() = 0;
|
||||
};
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
#include "hw_material.h"
|
||||
#include "tiletexture.h"
|
||||
#include "tilesetbuilder.h"
|
||||
#include "gameinput.h"
|
||||
#include "coreplayer.h"
|
||||
|
||||
#include "buildtiles.h"
|
||||
|
||||
|
@ -632,7 +632,11 @@ int GameMain()
|
|||
r = -1;
|
||||
}
|
||||
//DeleteScreenJob();
|
||||
if (gi) gi->FreeLevelData();
|
||||
if (gi)
|
||||
{
|
||||
gi->FreeLevelData();
|
||||
for (int i = 0; i < MAXPLAYERS; i++) delete PlayerArray[i];
|
||||
}
|
||||
DestroyAltHUD();
|
||||
DeinitMenus();
|
||||
if (StatusBar) StatusBar->Destroy();
|
||||
|
|
Loading…
Reference in a new issue