diff options
| author | Joel de Vahl <joel@stalverk80.se> | 2007-10-02 16:19:25 +0000 |
|---|---|---|
| committer | Joel de Vahl <joel@stalverk80.se> | 2007-10-02 16:19:25 +0000 |
| commit | 21df126c88230f11749bc9241ed51a26d31f0810 (patch) | |
| tree | cb1975ea5c41e44f1361c96c4105c702cf865ae1 /src/engine/interface.h | |
| parent | 4bf60da04b668d10c53d5d3784ba3543c7a4d314 (diff) | |
| download | zcatch-21df126c88230f11749bc9241ed51a26d31f0810.tar.gz zcatch-21df126c88230f11749bc9241ed51a26d31f0810.zip | |
sound fixes and initial lock implementation
Diffstat (limited to 'src/engine/interface.h')
| -rw-r--r-- | src/engine/interface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/interface.h b/src/engine/interface.h index 18a434dd..c1a0b282 100644 --- a/src/engine/interface.h +++ b/src/engine/interface.h @@ -356,9 +356,10 @@ float snd_get_master_volume(); void snd_set_master_volume(float val); int snd_load_wav(const char *filename); int snd_load_wv(const char *filename); -int snd_play(int cid, int sid, int loop, int x, int y); +int snd_play(int cid, int sid, int loop, float x, float y); void snd_stop(int id); void snd_set_vol(int id, float vol); +void snd_set_listener_pos(float x, float y); int snd_shutdown(); /* |