mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-18 04:44:08 +00:00
Island loading and PS2 alpha test added to options
This commit is contained in:
parent
a728a542be
commit
732681db08
14 changed files with 417 additions and 104 deletions
|
@ -372,6 +372,12 @@ enum eMenuAction
|
|||
#ifdef MULTISAMPLING
|
||||
MENUACTION_MULTISAMPLING,
|
||||
#endif
|
||||
#ifdef NO_ISLAND_LOADING
|
||||
MENUACTION_ISLANDLOADING,
|
||||
#endif
|
||||
#ifdef PS2_ALPHA_TEST
|
||||
MENUACTION_PS2_ALPHA_TEST,
|
||||
#endif
|
||||
#ifdef CUTSCENE_BORDERS_SWITCH
|
||||
MENUACTION_CUTSCENEBORDERS,
|
||||
#endif
|
||||
|
@ -622,6 +628,18 @@ public:
|
|||
void PrintMap();
|
||||
#endif
|
||||
|
||||
#ifdef NO_ISLAND_LOADING
|
||||
enum
|
||||
{
|
||||
ISLAND_LOADING_LOW = 0,
|
||||
ISLAND_LOADING_MEDIUM,
|
||||
ISLAND_LOADING_HIGH
|
||||
};
|
||||
|
||||
static int8 m_DisplayIslandLoading;
|
||||
static int8 m_PrefsIslandLoading;
|
||||
#endif
|
||||
|
||||
public:
|
||||
static void BuildStatLine(Const char *text, void *stat, bool itsFloat, void *stat2);
|
||||
static void CentreMousePointer();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue