diff options
author | aap <aap@papnet.eu> | 2020-12-29 20:31:06 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-12-29 20:31:06 +0100 |
commit | 426364b961603a031720910598c203289bc01722 (patch) | |
tree | 03ddce6f933835ea01ccc81fac663bca53af0d86 /src/core/Game.cpp | |
parent | Add sdk to gitignore (diff) | |
download | re3-426364b961603a031720910598c203289bc01722.tar re3-426364b961603a031720910598c203289bc01722.tar.gz re3-426364b961603a031720910598c203289bc01722.tar.bz2 re3-426364b961603a031720910598c203289bc01722.tar.lz re3-426364b961603a031720910598c203289bc01722.tar.xz re3-426364b961603a031720910598c203289bc01722.tar.zst re3-426364b961603a031720910598c203289bc01722.zip |
Diffstat (limited to 'src/core/Game.cpp')
-rw-r--r-- | src/core/Game.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/core/Game.cpp b/src/core/Game.cpp index b6ef7635..348ac26d 100644 --- a/src/core/Game.cpp +++ b/src/core/Game.cpp @@ -262,11 +262,25 @@ CGame::InitialiseRenderWare(void) CPlayerSkin::Initialise(); POP_MEMID(); +#ifdef EXTENDED_PIPELINES + CustomPipes::CustomPipeInit(); // need Scene.world for this +#endif +#ifdef SCREEN_DROPLETS + ScreenDroplets::InitDraw(); +#endif + return (true); } void CGame::ShutdownRenderWare(void) { +#ifdef SCREEN_DROPLETS + ScreenDroplets::Shutdown(); +#endif +#ifdef EXTENDED_PIPELINES + CustomPipes::CustomPipeShutdown(); +#endif + DestroySplashScreen(); CHud::Shutdown(); CFont::Shutdown(); |