Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fixed msi #278

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading