misc/libopenalbridge/tester.c
author Xeli
Sat, 28 Apr 2012 12:46:57 +0200
changeset 6950 f34ff54b0cbd
parent 3697 d5b30d6373fc
permissions -rw-r--r--
-Fixed FingerHasMoved function, still might need a little tweaking -Fixed targetting, it's not possible to fire airstrike and the like with a longpress, however it'll fire on the cursor not on the tap location
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
}