1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Use ogg music files instead of midi

It prevents different behaviour between OS.
This commit is contained in:
Mathieu Schroeter 2017-12-07 11:01:01 +01:00
parent 222113a343
commit 21bd7d3e90
21 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -3360,7 +3360,7 @@ CEvent::ChangePhase (Uint32 phase)
music = m_pDecor->GetMusic ();
if (music > 0)
{
filename = string_format ("music/music%.3d.mid", music - 1);
filename = string_format ("music/music%.3d.ogg", music - 1);
m_pSound->StopMusic ();
m_pSound->PlayMusic (filename);
}