mirror of
https://github.com/halpz/re3.git
synced 2025-05-10 10:36:37 +03:00
Update HUD stuff, bug and format fixes.
Added environment variables to premake5.lua. Update README.md
This commit is contained in:
parent
d92c9085da
commit
f299e9ebd5
17 changed files with 291 additions and 190 deletions
|
@ -37,15 +37,15 @@ WRAPPER void CMenuManager::LoadSettings(void) { EAXJMP(0x488EE0); }
|
|||
WRAPPER void CMenuManager::WaitForUserCD(void) { EAXJMP(0x48ADD0); }
|
||||
|
||||
int CMenuManager::FadeIn(int alpha) {
|
||||
if (FrontEndMenuManager.m_nCurrScreen == MENU_LOADING_IN_PROGRESS ||
|
||||
FrontEndMenuManager.m_nCurrScreen == MENU_SAVING_IN_PROGRESS ||
|
||||
FrontEndMenuManager.m_nCurrScreen == MENU_DELETING)
|
||||
if (m_nCurrScreen == MENU_LOADING_IN_PROGRESS ||
|
||||
m_nCurrScreen == MENU_SAVING_IN_PROGRESS ||
|
||||
m_nCurrScreen == MENU_DELETING)
|
||||
return alpha;
|
||||
|
||||
if (FrontEndMenuManager.m_nMenuFadeAlpha >= alpha)
|
||||
if (m_nMenuFadeAlpha >= alpha)
|
||||
return alpha;
|
||||
|
||||
return FrontEndMenuManager.m_nMenuFadeAlpha;
|
||||
return m_nMenuFadeAlpha;
|
||||
}
|
||||
|
||||
STARTPATCHES
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue