Skip to content

Commit

Permalink
Increase wait time when switching cutscenes in cutscene player
Browse files Browse the repository at this point in the history
  • Loading branch information
MAFINS committed Jan 31, 2023
1 parent 3dbf6b5 commit 4130aef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Solution/source/Submenus/CutscenePlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ namespace sub
GTAplayer player = Game::Player();

STOP_CUTSCENE_IMMEDIATELY();
REMOVE_CUTSCENE();

This comment has been minimized.

Copy link
@Rizal0333

Rizal0333 Sep 23, 2023

aku

player.SetControl(true, 32);
player.SetControl(true, 16);
player.SetControl(true, 0);
REMOVE_CUTSCENE();

}
void PlayCutscene(const std::string& label)
{
if (IS_CUTSCENE_PLAYING())
{
EndCutscene();
WAIT(200);
WAIT(1500);
}

GTAplayer player = Game::Player();
Expand Down

0 comments on commit 4130aef

Please sign in to comment.