misc/libopenalbridge/tester.c
author sheepluva
Tue, 04 Sep 2012 13:18:26 +0200
changeset 7669 a85e1c167b69
parent 3697 d5b30d6373fc
permissions -rw-r--r--
I didn't want to do this since it seems less clean, but... moving the stats-fix into CheckForWin, since that function is the one sending the damage stats (whyyyy?) therefore it's not sufficient to update stats after calling it, some of the stats won't be transfered to frontend then
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
}