Mod Archive Forums

Music Production => MilkyTracker => Tracking => MilkyTracker News => Topic started by: Deltafire on January 02, 2010, 01:32:37

Title: MilkyTracker 0.90.85
Post by: Deltafire on January 02, 2010, 01:32:37
MilkyTracker 0.90.85 has been released  ;D

Get it here. (http://milkytracker.org/?download)

Enjoy!
Title: Re: MilkyTracker 0.90.85
Post by: m0d on January 02, 2010, 02:21:43
Great work Deltafire.

Glad you took the initiative and got the job done, people will be happy :)
Title: Re: MilkyTracker 0.90.85
Post by: Kmuland on January 02, 2010, 10:53:36
Great work Deltafire.

Glad you took the initiative and got the job done, people will be happy :)

This time Deltafire is giving us the new awaited present!! Good job pal, and thanks for maintain the illusion with a new release ;)

Greets also to rest of team members and contributors that supported this new release
Title: Re: MilkyTracker 0.90.85
Post by: usrfriendly on January 09, 2010, 09:33:26
Cool!

I've been able to run it in Ubuntu 9.04, and Fedora 12 in my netbook, by the way.
Title: Re: MilkyTracker 0.90.85
Post by: DasKreestof on February 09, 2010, 20:54:09
Is there any chance of a 0.90.85 release for PocketPC? The internal browser fixes would really be a blessing.
Title: Re: MilkyTracker 0.90.85
Post by: panzi on June 16, 2011, 00:26:53
In order to make it compile on my 64bit Linux (Fedora 14) I had to make small changes in src/tracker/sdl/SDL_Main.cpp. Specifically I had to add an include (stdint.h), and then change all "(void*)p.x;" to "(void*)(intptr_t)p.x;" and "p.x = (pp_int32)event.data1;" to "p.x = (pp_int32)(intptr_t)event.data1;". (And the same for data2/y.) I guess this is because of different pointer sizes on 64bit systems.