Nothing works!

BlitzMax Forums/BlitzMax Programming/Nothing works!

Will(Posted 2012) [#1]
So I used blitzmax a ton back in the day, and now I need to show off some projects I made with it. Only I installed blitzmax, found the old source, and now nothing compiles because it can't find the basic BRL bits.

In response to not finding TGadget, TList and loadimage I added:

Framework maxgui.drivers
Framework brl.linkedlist
Framework brl.PNGLoader

In my main source file. But now it can't find a different tlist. I can't add "framework brl.linkedlist" in the file that's missing it because "Framework must appear in main source file" - but I already have it in my main source file ahead of anything else.

I'm very grateful for any help you can offer - especially if there is a way to turn off whatever changed out bmax so that my old code works again.


Jesse(Posted 2012) [#2]
only the first is supposed to be Framework the rest are supposed to be Import.

also why don't you get rid of the framework. test it that way first. just import the maxgui.drivers.

use Framework assist:
http://homepage.ntlworld.com/config/fa/

Last edited 2012


Will(Posted 2012) [#3]
Thanks Jesse, trying