[Scummvm-git-logs] scummvm master -> 9bb3547dd1f5467b29d7f02a62a5f86bd0e4a46e
bluegr
bluegr at gmail.com
Sat Jun 26 05:41:07 UTC 2021
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
9bb3547dd1 AUDIO: SOUNDFONT: Fix warnings for header search failure.
Commit: 9bb3547dd1f5467b29d7f02a62a5f86bd0e4a46e
https://github.com/scummvm/scummvm/commit/9bb3547dd1f5467b29d7f02a62a5f86bd0e4a46e
Author: Fiodar Stryzhniou (fedor_qd at mail.ru)
Date: 2021-06-26T08:41:04+03:00
Commit Message:
AUDIO: SOUNDFONT: Fix warnings for header search failure.
WARNING: Can't find following headers in User or System Include Paths "vgmitem.h" "sf2file.h" "common.h" "vgmitem.h" "common.h"
Changed paths:
audio/soundfont/sf2file.cpp
audio/soundfont/vgminstrset.h
audio/soundfont/vgmitem.cpp
audio/soundfont/vgmsamp.h
diff --git a/audio/soundfont/sf2file.cpp b/audio/soundfont/sf2file.cpp
index 3752aff9d2..14871f34a9 100644
--- a/audio/soundfont/sf2file.cpp
+++ b/audio/soundfont/sf2file.cpp
@@ -27,8 +27,8 @@
#include "common/scummsys.h"
#include "common/str.h"
-#include "sf2file.h"
-#include "synthfile.h"
+#include "audio/soundfont/sf2file.h"
+#include "audio/soundfont/synthfile.h"
using namespace std;
diff --git a/audio/soundfont/vgminstrset.h b/audio/soundfont/vgminstrset.h
index 0e47a215a2..dec0cea469 100644
--- a/audio/soundfont/vgminstrset.h
+++ b/audio/soundfont/vgminstrset.h
@@ -30,8 +30,8 @@
#include "common/scummsys.h"
#include "common/str.h"
#include "common/array.h"
-#include "vgmitem.h"
-#include "sf2file.h"
+#include "audio/soundfont/vgmitem.h"
+#include "audio/soundfont/sf2file.h"
class VGMSampColl;
class VGMInstr;
diff --git a/audio/soundfont/vgmitem.cpp b/audio/soundfont/vgmitem.cpp
index 5c250c17a8..93521265f8 100644
--- a/audio/soundfont/vgmitem.cpp
+++ b/audio/soundfont/vgmitem.cpp
@@ -25,9 +25,9 @@
* refer to the included VGMTrans_LICENSE.txt file
*/
-#include "common.h"
-#include "vgmitem.h"
-#include "vgminstrset.h"
+#include "audio/soundfont/common.h"
+#include "audio/soundfont/vgmitem.h"
+#include "audio/soundfont/vgminstrset.h"
using namespace std;
diff --git a/audio/soundfont/vgmsamp.h b/audio/soundfont/vgmsamp.h
index 3859d65bb4..71e307a5f4 100644
--- a/audio/soundfont/vgmsamp.h
+++ b/audio/soundfont/vgmsamp.h
@@ -27,10 +27,10 @@
#ifndef AUDIO_SOUNDFONT_VGMSAMP_H
#define AUDIO_SOUNDFONT_VGMSAMP_H
-#include "common.h"
+#include "audio/soundfont/common.h"
#include "common/scummsys.h"
#include "common/str.h"
-#include "vgmitem.h"
+#include "audio/soundfont/vgmitem.h"
class VGMSampColl;
class VGMInstrSet;
More information about the Scummvm-git-logs
mailing list