1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Client: change intro video position

This commit is contained in:
Arseniy Shestakov 2017-08-24 03:22:24 +03:00
parent 525ee8771a
commit c6ff28936d

View File

@ -938,9 +938,9 @@ void processCommand(const std::string &message)
//plays intro, ends when intro is over or button has been pressed (handles events)
void playIntro()
{
if(CCS->videoh->openAndPlayVideo("3DOLOGO.SMK", 60, 40, screen, true, true))
if(CCS->videoh->openAndPlayVideo("3DOLOGO.SMK", 0, 1, screen, true, true))
{
CCS->videoh->openAndPlayVideo("AZVS.SMK", 60, 80, screen, true, true);
CCS->videoh->openAndPlayVideo("AZVS.SMK", 0, 1, screen, true, true);
}
}