remove leftovers

This commit is contained in:
freq-mod 2024-08-14 20:27:58 +02:00
parent 03bc023644
commit 33f56ba531
7 changed files with 7 additions and 21 deletions

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//P VOX ADPCM sample bank //P VOX ADPCM sample bank
@ -125,7 +123,7 @@ void DivEngine::loadP(SafeReader& reader, std::vector<DivSample*>& ret, String&
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//P86 8-bit PCM sample bank //P86 8-bit PCM sample bank
@ -143,7 +141,7 @@ void DivEngine::loadP86(SafeReader& reader, std::vector<DivSample*>& ret, String
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//PDX 8-bit OKI ADPCM sample bank //PDX 8-bit OKI ADPCM sample bank
@ -102,7 +100,7 @@ void DivEngine::loadPDX(SafeReader& reader, std::vector<DivSample*>& ret, String
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//PPC PMD's YM2608 ADPCM-B sample bank //PPC PMD's YM2608 ADPCM-B sample bank
@ -143,7 +141,7 @@ void DivEngine::loadPPC(SafeReader& reader, std::vector<DivSample*>& ret, String
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//PPS AY-3-8910 sample bank //PPS AY-3-8910 sample bank
@ -126,7 +124,7 @@ void DivEngine::loadPPS(SafeReader& reader, std::vector<DivSample*>& ret, String
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//PVI YM2608 ADPCM-B sample bank //PVI YM2608 ADPCM-B sample bank
@ -159,7 +157,7 @@ void DivEngine::loadPVI(SafeReader& reader, std::vector<DivSample*>& ret, String
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }

View file

@ -24,8 +24,6 @@
extern FurnaceGUI g; extern FurnaceGUI g;
#endif #endif
#define _LE(string) (string)
class DivEngine; class DivEngine;
//PZI 8-bit PCM sample bank //PZI 8-bit PCM sample bank
@ -156,7 +154,7 @@ void DivEngine::loadPZI(SafeReader& reader, std::vector<DivSample*>& ret, String
} }
catch (EndOfFileException& e) catch (EndOfFileException& e)
{ {
lastError=_LE("premature end of file"); lastError=_("premature end of file");
logE("premature end of file"); logE("premature end of file");
} }
} }