diff options
author | Charadon <dev@iotib.net> | 2022-06-08 06:27:13 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-06-08 06:27:13 -0400 |
commit | 9cb1d207cbc896494b60068aa61598502675e4b7 (patch) | |
tree | d3748543a7b215129ffc77076bb7658bf81f1052 /src/pong.h | |
parent | c1811dc4241c5f89f3f3a743e35ef44c313356b5 (diff) | |
download | Pong-C-9cb1d207cbc896494b60068aa61598502675e4b7.tar.gz |
Changed how title music was played to make it respect settings
Diffstat (limited to 'src/pong.h')
-rw-r--r-- | src/pong.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pong.h b/src/pong.h index 74a208a..a9adf41 100644 --- a/src/pong.h +++ b/src/pong.h @@ -51,6 +51,7 @@ extern int Difficulty; extern bool GameGoing; extern SDL_atomic_t Ticks; extern char VersionString[256]; +extern SDL_mutex *AudioInitializing; void enemy(struct Players *Enemy, struct Balls ball); void ball(Rectangle *Player, Rectangle *Enemy, struct Balls *Ball, int *PlayerScore, int *EnemyScore); |