mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 06:25:16 +00:00
fixes
This commit is contained in:
parent
aa4ccc3c3f
commit
7974b96275
8 changed files with 1 additions and 38 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue