From 2daddafe3a6ed38d9e9bfdbb392e490355e8df89 Mon Sep 17 00:00:00 2001 From: maelstrom Date: Thu, 28 May 2026 16:48:34 +0200 Subject: [PATCH] fix: missing cstring import for memcpy --- engine/src/soundldr/flac.cc | 1 + engine/src/soundldr/mp3.cc | 1 + engine/src/soundldr/vorbis.cc | 1 + engine/src/soundldr/wav.cc | 1 + engine/src/soundldr/xmp.cc | 1 + 5 files changed, 5 insertions(+) diff --git a/engine/src/soundldr/flac.cc b/engine/src/soundldr/flac.cc index f812160..42a35c5 100644 --- a/engine/src/soundldr/flac.cc +++ b/engine/src/soundldr/flac.cc @@ -1,3 +1,4 @@ +#include #include struct fishbone::Sound::Impl { diff --git a/engine/src/soundldr/mp3.cc b/engine/src/soundldr/mp3.cc index 057330f..c6fc083 100644 --- a/engine/src/soundldr/mp3.cc +++ b/engine/src/soundldr/mp3.cc @@ -1,3 +1,4 @@ +#include #include struct fishbone::Sound::Impl { diff --git a/engine/src/soundldr/vorbis.cc b/engine/src/soundldr/vorbis.cc index 56d3047..574ebc6 100644 --- a/engine/src/soundldr/vorbis.cc +++ b/engine/src/soundldr/vorbis.cc @@ -1,3 +1,4 @@ +#include #include struct fishbone::Sound::Impl { diff --git a/engine/src/soundldr/wav.cc b/engine/src/soundldr/wav.cc index 5703b68..62b9abc 100644 --- a/engine/src/soundldr/wav.cc +++ b/engine/src/soundldr/wav.cc @@ -1,3 +1,4 @@ +#include #include struct fishbone::Sound::Impl { diff --git a/engine/src/soundldr/xmp.cc b/engine/src/soundldr/xmp.cc index f2f0a77..7b4e845 100644 --- a/engine/src/soundldr/xmp.cc +++ b/engine/src/soundldr/xmp.cc @@ -1,3 +1,4 @@ +#include #include struct fishbone::Sound::Impl {