misc/libopenalbridge/tester.c
author unc0rr
Mon, 03 Dec 2012 23:54:12 +0400
changeset 8206 1633a6510834
parent 3697 d5b30d6373fc
permissions -rw-r--r--
Create hedgewars.ini if not exists manually, as QSettings uses QTemporaryFile for that, and QTemporaryFile doesn't respect custom file engines.

#include <stdio.h>
#include "openalbridge.h"

int main (int argc, int **argv) {

    openal_init();

    openal_close();

    return 0;
}