misc/libopenalbridge/tester.c
author unc0rr
Sun, 17 Mar 2013 00:18:38 +0400
changeset 8733 b6002f1956d5
parent 3697 d5b30d6373fc
permissions -rw-r--r--
Hard math to fix issue #571. Well, not really hard math, just checking if vector is in opposite direction and trait that as a special case when removing rope dividing point (this could only happens when rope sticks to land outline, so this basically fixes a bug in another bug).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3529
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
     1
#include <stdio.h>
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
     2
#include "openalbridge.h"
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
     3
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
     4
int main (int argc, int **argv) {
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3529
diff changeset
     5
3529
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
     6
    openal_init();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3529
diff changeset
     7
3529
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
     8
    openal_close();
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3529
diff changeset
     9
3529
0e968ba12a84 memory management for openalbridge
koda
parents:
diff changeset
    10
    return 0;
3697
d5b30d6373fc remove trailing spaces from end of line
koda
parents: 3529
diff changeset
    11
}