diff options
| author | David Reid <[email protected]> | 2017-11-12 22:56:53 +1000 |
|---|---|---|
| committer | David Reid <[email protected]> | 2017-11-12 22:57:31 +1000 |
| commit | e52f4282d6f8e7465367effb22ba6f90a9099667 (patch) | |
| tree | 50a4c2bb61dd2433e6e7a2879068ed8800805a17 /src/external | |
| parent | ac4c911ad7e08cca3691896befbe8c09e3f3262f (diff) | |
| download | raylib-e52f4282d6f8e7465367effb22ba6f90a9099667.tar.gz raylib-e52f4282d6f8e7465367effb22ba6f90a9099667.zip | |
Update comments.
Diffstat (limited to 'src/external')
| -rw-r--r-- | src/external/mini_al.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/external/mini_al.c b/src/external/mini_al.c index 2ea2cc6b..7b437851 100644 --- a/src/external/mini_al.c +++ b/src/external/mini_al.c @@ -1,2 +1,4 @@ +// The implementation of mini_al needs to #include windows.h which means it needs to go into +// it's own translation unit. Not doing this will cause conflicts with CloseWindow(), etc. #define MAL_IMPLEMENTATION -#include "mini_al.h" // <-- The implementation of mini_al.h #includes windows.h, so need to #undef some stuff.
\ No newline at end of file +#include "mini_al.h"
\ No newline at end of file |
