Skip to content

Commit 397fefb

Browse files
committed
sync Nuked OPL3/OPLL/OPN2 with upstream repo
1 parent c50761e commit 397fefb

14 files changed

+443
-369
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ LIBEMUOBJS = \
187187
$(LIBEMUOBJ)/cores/262intf.o \
188188
$(LIBEMUOBJ)/cores/ymf262.o \
189189
$(LIBEMUOBJ)/cores/adlibemu_opl3.o \
190-
$(LIBEMUOBJ)/cores/nukedopl.o \
190+
$(LIBEMUOBJ)/cores/nukedopl3.o \
191191
$(LIBEMUOBJ)/cores/ymf278b.o \
192192
$(LIBEMUOBJ)/cores/ymf271.o \
193193
$(LIBEMUOBJ)/cores/ymz280b.o \

emu/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ if(SNDEMU_YM3812_MAME OR SNDEMU_YM3812_ADLIBEMU OR SNDEMU_YM3812_NUKED)
356356
endif()
357357
if(SNDEMU_YM3812_NUKED)
358358
set(EMU_DEFS ${EMU_DEFS} " EC_YM3812_NUKED")
359-
set(EMU_FILES ${EMU_FILES} cores/nukedopl.c)
359+
set(EMU_FILES ${EMU_FILES} cores/nukedopl3.c)
360360
endif()
361361
endif()
362362
if(SNDEMU_YM3526_ALL)
@@ -386,7 +386,7 @@ if(SNDEMU_YMF262_MAME OR SNDEMU_YMF262_ADLIBEMU OR SNDEMU_YMF262_NUKED)
386386
endif()
387387
if(SNDEMU_YMF262_NUKED)
388388
set(EMU_DEFS ${EMU_DEFS} " EC_YMF262_NUKED")
389-
set(EMU_FILES ${EMU_FILES} cores/nukedopl.c)
389+
set(EMU_FILES ${EMU_FILES} cores/nukedopl3.c)
390390
endif()
391391
endif()
392392
if(SNDEMU_YMF278B_ALL)

emu/cores/262intf.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "adlibemu.h"
1515
#endif
1616
#ifdef EC_YMF262_NUKED
17-
#include "nukedopl.h"
17+
#include "nukedopl3.h"
1818
#endif
1919

2020

0 commit comments

Comments
 (0)