What is the track that plays at the end of the Ice Palace (on the second board of the Original Game), in the room where you find the Shelter Key? (https://www.youtube.com/watch?v=AttWezsgbYw 9:45:10 so you don't have to search)
The wiki says it's NORTHERNLIGHT slowed down, but to me it sounds like something completely new. If it is something new, then it's definitely not included on the Hidden Music Tracks page.
Any ideas? Just wanted to share this for some reason
I think it's either slowed and chopped NORTHERNLIGHT, or slowed and reversed NORTHERNLIGHT.
The code shows it to be northernlight played at 1/3 pitch
if (musinit == 0 && obj_board_camera.con == 0)
{
north = snd_init("northernlight.ogg");
music = mus_loop_ext(north, 1, 1/3);
mus_volume(music, 0, 0);
mus_volume(music, 1, 90);
with (obj_gameshow_swordroute)
scr_lerpvar_instance(id, "screenalpha", 1, 0, 15);
var memx = kris.x - board_tilex(0);
var memy = kris.y - board_tiley(0);
scr_board_instawarp(4160, 4672, 4160 + memx, 4672 + memy);
kris.cantleave = 0;
musinit = 1;
}