Legend of Pandora

Started by quadcricket, June 01, 2021, 02:33:35 AM

Previous topic - Next topic

quadcricket

https://gitlab.com/quadcricket/legend-of-pandora

I had ported my old project to Windows years ago with Pelles C but now I am having trouble setting up the project in Windows 10 (There are still POCC ifdefs in the code to help compilation).

I followed the help in the forums setting up SDL with a static library but I am not quite sure what to do with SDL_mixer and it's dependency libmad.

Any help would be appreciated.


Edit:

I found that SDL_Mixer has a static .lib ready to go on it's download page and was able to include it no problem. No issues with libmad as far as I can see. It's not compiling yet since, apparently, switch case ranges are a gcc thing and I will need to convert all of them, which might take a bit.


Edit 2:

I commented out the case ranges and added an ifdef to make the Windows' main statement: "int WINAPI wWinMain(HINSTANCE h , HINSTANCE p , wchar_t* c , int s )"
and all is well. I'm glad to see it running!

TimoVJL

for switch case, enable Pelles C extensions
May the source be with you

quadcricket

Quote from: TimoVJL on June 01, 2021, 08:25:19 AM
for switch case, enable Pelles C extensions

Awesome! That will be a big help to not have to edit everything, thank you!