aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/softsynth/opl/dosbox.cpp4
-rw-r--r--sound/softsynth/opl/opl_impl.h (renamed from sound/softsynth/opl/opl.cpp)2
-rw-r--r--sound/softsynth/opl/opl_inc.h (renamed from sound/softsynth/opl/opl.h)0
3 files changed, 3 insertions, 3 deletions
diff --git a/sound/softsynth/opl/dosbox.cpp b/sound/softsynth/opl/dosbox.cpp
index ae1499ef49..db8f8109d7 100644
--- a/sound/softsynth/opl/dosbox.cpp
+++ b/sound/softsynth/opl/dosbox.cpp
@@ -145,7 +145,7 @@ uint8 Chip::read() {
}
namespace OPL2 {
-#include "opl.cpp"
+#include "opl_impl.h"
struct Handler : public DOSBox::Handler {
void writeReg(uint32 reg, uint8 val) {
@@ -168,7 +168,7 @@ struct Handler : public DOSBox::Handler {
namespace OPL3 {
#define OPLTYPE_IS_OPL3
-#include "opl.cpp"
+#include "opl_impl.h"
struct Handler : public DOSBox::Handler {
void writeReg(uint32 reg, uint8 val) {
diff --git a/sound/softsynth/opl/opl.cpp b/sound/softsynth/opl/opl_impl.h
index 416f38a8ce..4ea8793965 100644
--- a/sound/softsynth/opl/opl.cpp
+++ b/sound/softsynth/opl/opl_impl.h
@@ -24,7 +24,7 @@
* Ken Silverman's official web site: "http://www.advsys.net/ken"
*/
-#include "opl.h"
+#include "opl_inc.h"
static fltype recipsamp; // inverse of sampling rate
diff --git a/sound/softsynth/opl/opl.h b/sound/softsynth/opl/opl_inc.h
index 0798bd9f6a..0798bd9f6a 100644
--- a/sound/softsynth/opl/opl.h
+++ b/sound/softsynth/opl/opl_inc.h