mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
Fixed compilation errors
src/sound/oplsynth/musicblock.cpp:3:10: fatal error: 'muslib.h' file not found src/sound/oplsynth/oplio.cpp:410:12: error: use of undeclared identifier 'cos' src/sound/oplsynth/oplio.cpp:410:41: error: use of undeclared identifier 'sin'
This commit is contained in:
parent
c219811a54
commit
4519ab12e9
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "muslib.h"
|
||||
#include "musicblock.h"
|
||||
#include "files.h"
|
||||
#include "templates.h"
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
**---------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
#include "genmidi.h"
|
||||
#include "oplio.h"
|
||||
#include "opl.h"
|
||||
|
|
Loading…
Reference in a new issue