summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/Sound.cpp')
-rw-r--r--Stars45/Sound.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Stars45/Sound.cpp b/Stars45/Sound.cpp
index b164467..01537e9 100644
--- a/Stars45/Sound.cpp
+++ b/Stars45/Sound.cpp
@@ -11,7 +11,6 @@
Abstract sound class
*/
-#include "MemDebug.h"
#include "Sound.h"
#include "SoundCard.h"
#include "Wave.h"
@@ -70,7 +69,7 @@ Sound::CreateStream(const char* filename)
len = 4096;
}
- buf = new(__FILE__,__LINE__) BYTE[len];
+ buf = new BYTE[len];
if (buf && len)
fread(buf, len, 1, f);
@@ -161,7 +160,7 @@ Sound::CreateOggStream(const char* filename)
::fopen_s(&f, filename, "rb");
if (f) {
- OggVorbis_File* povf = new(__FILE__,__LINE__) OggVorbis_File;
+ OggVorbis_File* povf = new OggVorbis_File;
if (!povf) {
Print("Sound::CreateOggStream(%s) - out of memory!\n", filename);