Donate Share

TuxCap Games Framework

The forum address has changed, you have been automatically redirected. Please update any bookmarks to use the new URL.

Subscribe

Another one with OSX problems compiling

You are viewing a single message from this topic. View all messages.

  1. 2009-09-03 09:54:17 UTC
    I have modified the sourcecode of physics.h and now it seems to compile and run the demos and hungarr. I wasn't sure about sound but hungarr seems to play sounds correctly. Stil I don't know if there are errors of some kind, I'll check it more deeply later. Are there any files for errors, crashes and such like in pycap?

    About the modification of the sourcecode I replaced

    #include <linux/types.h>
    typedef __u32 uint32_t;

    with

    #ifdef linux
    #include <linux/types.h>
    typedef __u32 uint32_t;
    #else
    #include <sys/types.h>
    #endif

    Oh! almost forgot to mention that I'm using CVS code pulled yesterday. As I said, I'll keep testing.
< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.