mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 01:29:16 +01:00
Disable loading screen
This commit is contained in:
parent
cf69f22a0c
commit
c012e5a7ff
@ -198,6 +198,7 @@ enum Config {
|
|||||||
#define DEFAULT_NATIVE_RESOLUTION // Set default video mode to your native resolution (fixes Windows 10 launch)
|
#define DEFAULT_NATIVE_RESOLUTION // Set default video mode to your native resolution (fixes Windows 10 launch)
|
||||||
#define USE_TXD_CDIMAGE // generate and load textures from txd.img
|
#define USE_TXD_CDIMAGE // generate and load textures from txd.img
|
||||||
#define IMPROVED_VIDEOMODE // save and load videomode parameters instead of a magic number
|
#define IMPROVED_VIDEOMODE // save and load videomode parameters instead of a magic number
|
||||||
|
#define DISABLE_LOADING_SCREEN // disable the loading screen which vastly improves the loading time
|
||||||
#define NO_ISLAND_LOADING // disable loadscreen between islands via loading all island data at once, consumes more memory and CPU
|
#define NO_ISLAND_LOADING // disable loadscreen between islands via loading all island data at once, consumes more memory and CPU
|
||||||
//#define USE_TEXTURE_POOL
|
//#define USE_TEXTURE_POOL
|
||||||
|
|
||||||
|
@ -471,6 +471,7 @@ ResetLoadingScreenBar()
|
|||||||
void
|
void
|
||||||
LoadingScreen(const char *str1, const char *str2, const char *splashscreen)
|
LoadingScreen(const char *str1, const char *str2, const char *splashscreen)
|
||||||
{
|
{
|
||||||
|
#ifndef DISABLE_LOADING_SCREEN
|
||||||
CSprite2d *splash;
|
CSprite2d *splash;
|
||||||
|
|
||||||
#ifndef RANDOMSPLASH
|
#ifndef RANDOMSPLASH
|
||||||
@ -534,6 +535,7 @@ LoadingScreen(const char *str1, const char *str2, const char *splashscreen)
|
|||||||
CFont::DrawFonts();
|
CFont::DrawFonts();
|
||||||
DoRWStuffEndOfFrame();
|
DoRWStuffEndOfFrame();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user