camthesaxman

Results 12 comments of camthesaxman

That makes sense. It would be a mess to keep track of types everywhere. But I think in the case of function prototypes for a decompiled function, it should copy...

That's fine. I'd be okay with it loading the settings for the cartridge that you swap to. It makes sense because with physical hardware, the save memory is located on...

Same problem here on Windows XP Professional x64 Edition. I noticed a bash.exe.stackdump file lying around in my home directory. Perhaps bash crashed at one point and didn't get to...

I saw your post on the Ubuntu MATE forums and it looks like you were able to build some of this and get applications running with it, but I still...

@thesquash I am fairly experienced with C programming (though I don't know very much about GTK other than dabbling with it for a few side projects). I have a few...

I have a modified version of GBA Mus Riper, which was able to produce a matching bgm_pokecen.mid. https://github.com/camthesaxman/pokeruby_mus_riper I haven't tried any other songs yet. We still need to fix...

The m4a library was included in Nintendo's Gameboy Advance SDK, so it was used by many (but not all) games. I think it was just distributed as a .o file...

I will get to this eventually. There are some other issues I fixed in #380, so use that version for testing.

Some of the code does use a bitfield, but other parts assign the values directly, and using a bitfield won't match. We already have a vBgCnt struct in types.h for...

Oh, I see what you mean about making it a union. I believe that would match at the cost of being slightly more verbose because of the extra member required....