This commit is contained in:
tildearrow 2024-08-18 02:30:30 -05:00
parent aa4ccc3c3f
commit 7974b96275
8 changed files with 1 additions and 38 deletions

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//P VOX ADPCM sample bank

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//P86 8-bit PCM sample bank

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//PDX 8-bit OKI ADPCM sample bank

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//PPC PMD's YM2608 ADPCM-B sample bank

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//PPS AY-3-8910 sample bank

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//PVI YM2608 ADPCM-B sample bank

View file

@ -19,11 +19,6 @@
#include "fileOpsCommon.h"
#ifdef HAVE_GUI
#include "../gui/gui.h"
extern FurnaceGUI g;
#endif
class DivEngine;
//PZI 8-bit PCM sample bank

View file

@ -24,8 +24,6 @@
#include "sfWrapper.h"
#endif
#define _LE(string) (string)
std::vector<DivSample*> DivEngine::sampleFromFile(const char* path) {
std::vector<DivSample*> ret;
@ -113,7 +111,7 @@ std::vector<DivSample*> DivEngine::sampleFromFile(const char* path) {
buf=new unsigned char[len];
if (fread(buf,1,len,f)!=(size_t)len) {
logW("did not read entire sample bank file buffer!");
lastError=_LE("did not read entire sample bank file!");
lastError=_("did not read entire sample bank file!");
delete[] buf;
return ret;
}