mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 14:29:00 +00:00
fixed intro skip
This commit is contained in:
parent
8de701dd70
commit
fc5fc602ba
1 changed files with 2 additions and 2 deletions
|
@ -2428,7 +2428,7 @@ int8 CRunningScript::ProcessCommandsFrom200To299(int32 command)
|
||||||
{
|
{
|
||||||
CollectParameters(&m_nIp, 2);
|
CollectParameters(&m_nIp, 2);
|
||||||
bool value = GetPadState(ScriptParams[0], ScriptParams[1]) != 0;
|
bool value = GetPadState(ScriptParams[0], ScriptParams[1]) != 0;
|
||||||
if (CGame::playingIntro && ScriptParams[0] && ScriptParams[1] == 12){ /* pad1, start */
|
if (CGame::playingIntro && ScriptParams[0] == 0 && ScriptParams[1] == 12){ /* pad1, start */
|
||||||
if (CPad::GetPad(0)->GetLeftMouseJustDown() ||
|
if (CPad::GetPad(0)->GetLeftMouseJustDown() ||
|
||||||
CPad::GetPad(0)->GetPadEnterJustDown() ||
|
CPad::GetPad(0)->GetPadEnterJustDown() ||
|
||||||
CPad::GetPad(0)->GetCharJustDown(' '))
|
CPad::GetPad(0)->GetCharJustDown(' '))
|
||||||
|
|
Loading…
Reference in a new issue