(svn r7200) -Codechange: remove unneeded redraw (console.c), coding style, use FindWindowById

instead of _windows loop (viewport.c), remove dump-code (mixer.c), MSVC6 borkdness
 in stdafx.h, constness (viewport.c), variable localization (win32.c), comments (window.c)
This commit is contained in:
Darkvater
2006-11-18 00:14:43 +00:00
parent 2754eeb989
commit c4d841dcdb
8 changed files with 43 additions and 51 deletions

View File

@@ -89,15 +89,6 @@ void MxMixSamples(void *buffer, uint samples)
if (mc->samples_left == 0) MxCloseChannel(mc);
}
}
#if 0
{
static FILE *out = NULL;
if (out == NULL)
out = fopen("d:\\dump.raw", "wb");
fwrite(buffer, samples * 4, 1, out);
}
#endif
}
MixerChannel *MxAllocateChannel(void)