Yes. I tried it out with Winamp and it sounded much better. I've tried more than 1 mod and all sounded badly. I think the mods were OK because it were mods from AMIGA games.
The fragment of the code looks like this (c++ builder):
Bass_Init(-1,WAVE_FORMAT_4S16,0,Form1->Handle);
Bass_Start();
HMUSIC mod=Bass_MusicLoad(0,Name.c_str),0,0, BASS_MUSIC_RAMPS|BASS_MUSIC_FT2MOD|BASS_MUSIC_FLOAT);
bool playing=Bass_MusicPlay(mod);
There is your problem, I told you to put the frequency...so change it to this,
Bass_Init(-1,44100,0,Form1->Handle);