Skip to content

Commit dd6010a

Browse files
committed
Fix more build problems
1 parent b1b4a9e commit dd6010a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

py/circuitpy_defns.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ SRC_SHARED_MODULE_ALL = \
322322
audiomixer/Mixer.c \
323323
audiomixer/MixerVoice.c \
324324
audiomp3/__init__.c \
325-
audiomp3/MP3File.c \
325+
audiomp3/MP3Decoder.c \
326326
bitbangio/I2C.c \
327327
bitbangio/OneWire.c \
328328
bitbangio/SPI.c \

shared-module/audiomp3/MP3Decoder.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* THE SOFTWARE.
2626
*/
2727

28-
#include "shared-bindings/audiomp3/MP3File.h"
28+
#include "shared-bindings/audiomp3/MP3Decoder.h"
2929

3030
#include <stdint.h>
3131
#include <string.h>
@@ -34,7 +34,7 @@
3434
#include "py/mperrno.h"
3535
#include "py/runtime.h"
3636

37-
#include "shared-module/audiomp3/MP3File.h"
37+
#include "shared-module/audiomp3/MP3Decoder.h"
3838
#include "supervisor/shared/translate.h"
3939
#include "lib/mp3/src/mp3common.h"
4040

0 commit comments

Comments
 (0)