Skip to content

Commit

Permalink
fix: fixed msi
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbsinteractive committed Jul 22, 2024
1 parent 80f9175 commit 6816eea
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
24 changes: 20 additions & 4 deletions remc2-installer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit 6816eea

Please sign in to comment.