aboutsummaryrefslogtreecommitdiff
path: root/src/audio.c
diff options
context:
space:
mode:
authorvictorfisac <victorfisac@gmail.com>2015-12-21 16:42:13 +0100
committervictorfisac <victorfisac@gmail.com>2015-12-21 16:42:13 +0100
commit4db2da91850fcc55ec08df253e533e236eb91451 (patch)
tree83042caf6816073f29e69c0b6d46de88fb3c3c19 /src/audio.c
parent1b39b2e2612dfd7613e3bfb6948e8d27472ab8c1 (diff)
downloadraylib-4db2da91850fcc55ec08df253e533e236eb91451.tar.gz
raylib-4db2da91850fcc55ec08df253e533e236eb91451.zip
Added new matrix location points and extra functions
- New model and view transformation matrix added, useful for shaders. Modelview matrix not deleted to keep opengl 1.1 pipeline compatibility. - New extra function added DrawModelWiresEx() to set a rotation and scale transformations to a wire model drawing. - Other writing and little audio.c bug fixed.
Diffstat (limited to 'src/audio.c')
-rw-r--r--src/audio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio.c b/src/audio.c
index 8ef71116..6313c9dc 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -92,7 +92,7 @@ typedef enum { INFO = 0, ERROR, WARNING, DEBUG, OTHER } TraceLogType;
//----------------------------------------------------------------------------------
// Global Variables Definition
//----------------------------------------------------------------------------------
-bool musicEnabled = false;
+static bool musicEnabled = false;
static Music currentMusic; // Current music loaded
// NOTE: Only one music file playing at a time