Discotron wrote:Okay thanks, I thought since it's a 1996 game that it shouldn't be so hard to mod and that there existed some kind of comprehensive catalog/modding tool for these kinds of things.
It would probably be possible if the game already had another theme playing in the main menu; in which case you'd just need to replace the MIDI file in the game data. However music in the main menu is disabled, meaning that you would need to change parts of the executable which are "hardcoded". This requires extensive analysis/debugging of said executable.
In the simplest of cases, a main menu theme was present (like in the beta demo) but then the developers disabled it - either by blocking off the relevant piece of code or by pointing it to an "empty" music file entry. You would then have to find the code responsible for the menu music and "fix" it by re-activating or changing the music entry it is supposed to be playing.
However it might very well be the case that there is no code for playing music in the main menu whatsoever. In this case the only way to change it would be to either re-appropriate some code responsible for music playing from another section of the game (which may or may not be possible), or, if the source code was available, edit the code and compile a new executable with this modification.