diff --git a/config.ini b/config.ini index 9a28ceccbb..045e5f68a7 100644 --- a/config.ini +++ b/config.ini @@ -11,7 +11,7 @@ skipintro = true hqsound = true ; sound is transfered from 11025,8bit,mono to 44000,16bit,stereo oggmusic = true ; using AWE32 record of MIDI music, for this function is hqsound auto enabled oggmusicFolder = music-ogg ; directory with music, you can rewrite with own music too. Path is relative to .exe -oggmusicalternative = true ; use original and alternative sound tracks +oggmusicalternative = false ; use original and alternative sound tracks fixspeedsound = false ; set true when sounds play double speed [graphics] diff --git a/remc2-installer/Program.cs b/remc2-installer/Program.cs index 1319b7e4ac..c9fe0a47d1 100644 --- a/remc2-installer/Program.cs +++ b/remc2-installer/Program.cs @@ -65,18 +65,34 @@ static void Main() } }, #if WIN64 - new File(@"..\x64\Release\libfreetype-6.dll"), - new File(@"..\x64\Release\libpng16-16.dll"), + new File(@"..\x64\Release\brotlicommon.dll"), + new File(@"..\x64\Release\brotlidec.dll"), + new File(@"..\x64\Release\bz2.dll"), + new File(@"..\x64\Release\fmt.dll"), + new File(@"..\x64\Release\freetype.dll"), + new File(@"..\x64\Release\libpng16.dll"), + new File(@"..\x64\Release\ogg.dll"), new File(@"..\x64\Release\SDL2.dll"), new File(@"..\x64\Release\SDL2_image.dll"), + new File(@"..\x64\Release\SDL2_mixer.dll"), new File(@"..\x64\Release\SDL2_ttf.dll"), + new File(@"..\x64\Release\vorbis.dll"), + new File(@"..\x64\Release\vorbisfile.dll"), new File(@"..\x64\Release\zlib1.dll"), #else - new File(@"..\Release\libfreetype-6.dll"), - new File(@"..\Release\libpng16-16.dll"), + new File(@"..\Release\brotlicommon.dll"), + new File(@"..\Release\brotlidec.dll"), + new File(@"..\Release\bz2.dll"), + new File(@"..\Release\fmt.dll"), + new File(@"..\Release\freetype.dll"), + new File(@"..\Release\libpng16.dll"), + new File(@"..\Release\ogg.dll"), new File(@"..\Release\SDL2.dll"), new File(@"..\Release\SDL2_image.dll"), + new File(@"..\Release\SDL2_mixer.dll"), new File(@"..\Release\SDL2_ttf.dll"), + new File(@"..\Release\vorbis.dll"), + new File(@"..\Release\vorbisfile.dll"), new File(@"..\Release\zlib1.dll"), #endif new File(@"Extract.bat"),