mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-04 23:04:08 +00:00
sync
This commit is contained in:
commit
23831e38e6
27 changed files with 508 additions and 329 deletions
|
@ -3250,7 +3250,9 @@ CMenuManager::PrintBriefs()
|
|||
void
|
||||
CMenuManager::PrintStats()
|
||||
{
|
||||
static uint8 pirateCheck = 0;
|
||||
#ifdef SECUROM
|
||||
static uint8 statsPirateCheck = 0;
|
||||
#endif
|
||||
static float scrollY = 0;
|
||||
|
||||
int rowNum = CStats::ConstructStatLine(99999);
|
||||
|
@ -3263,11 +3265,13 @@ CMenuManager::PrintStats()
|
|||
CFont::SetPropOn();
|
||||
CFont::SetDropShadowPosition(0);
|
||||
|
||||
if (pirateCheck == 0)
|
||||
#ifdef SECUROM
|
||||
if (statsPirateCheck == 0)
|
||||
// if not pirated game
|
||||
pirateCheck = 46;
|
||||
// statsPirateCheck = 46;
|
||||
// else
|
||||
// pirateCheck = 45;
|
||||
statsPirateCheck = 45;
|
||||
#endif
|
||||
|
||||
if (m_PrefsLanguage == LANGUAGE_AMERICAN)
|
||||
CFont::SetScale(MENU_X(0.43f), MENU_Y(0.75f));
|
||||
|
@ -3287,8 +3291,10 @@ CMenuManager::PrintStats()
|
|||
lastCheck = CTimer::GetTimeInMillisecondsPauseMode();
|
||||
}
|
||||
|
||||
if (pirateCheck == 45)
|
||||
#ifdef SECUROM
|
||||
if (statsPirateCheck == 45)
|
||||
return;
|
||||
#endif
|
||||
|
||||
float nextYChange, y, alpha;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue