So work is still ongoing, but mainly focused on increasing performance of the engine itself, things that I've done since the last release:
* Written an entirely new threading subsystem on top of pthread. This allows the same threading code to run on all platforms. The c++ threading library, which I used up until now, isn't fully implemented in the dreamcast toolchain.
* Written a sampling profiler for the dreamcast. This lets me track down the bottlenecks.
* Written replacements for C++ dictionary like containers which are faster than the standard ones for workloads which repeatedly insert then clear the container. This should speed up the render queue and reduce the number of memory allocations during rendering.
This is a slow process, but hopefully soon I can get back to work on the game itself
