transylvania thingy is now fully working
any other games people want?
btw, for a windows version, you can e-mail me if you want
for a dreamcast version... i'll be attempting to import quzar's changes to my current version
---
after edit:
TO QUZAR, but may be of interest to others:
luckily, i can see exactly which parts of code you wrote, the reason is, my editor left 0x0A after each line, your editor left a 0x0D, 0x0A...
so i can see your lines as lines ending with weird marks, it's excellent, and it's lucky, but it's merely an editor bug, right now i will be incoporating your changes, but i highly recommend using #defines next time... your changes will be incorporated to my code with an addition of #ifdef QUZAR
another thing, i am not going to import all of your changes to the routines that write to report_file, i am simply going to replace:
report_file = fopen("report","w"
with this:
#ifdef QUZAR
report_file = stdout;
#else
report_file = fopen("report","w"
#endif
-----
and yet another edit:
i have some problem with quzar's code, in his file_open, he tries to open a file from the CD, then copy it or something, then he closes it, and sends the invalid handle of the closed file as an fhandle, it seems wrong but i'm not certain, anyone else care to check this?
i know little of the dreamcast, so if quzar or anyone else can help i would be very thankful
Bookmarks