Reduced the size of BigBuf to make more room for stack/vars

This commit is contained in:
d18c7db 2009-07-29 13:37:09 +00:00
commit 0422e2a471
5 changed files with 8 additions and 19 deletions

View file

@ -9,7 +9,7 @@
// The large multi-purpose buffer, typically used to hold A/D samples,
// maybe processed in some way.
DWORD BigBuf[16000];
DWORD BigBuf[10000];
/// appmain.h
void ReadMem(int addr);