Enlarged the buffer for DEBUGF()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7333 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-08-16 08:32:43 +00:00
parent d3fde76fc7
commit 1d28240330
2 changed files with 3 additions and 5 deletions

View file

@ -24,8 +24,8 @@
#include "cpu.h"
#ifdef DEBUG
static char debugmembuf[100];
static char debugbuf[200];
static char debugmembuf[200];
static char debugbuf[400];
#endif
#ifndef SIMULATOR /* allow non archos platforms to display output */

View file

@ -20,9 +20,7 @@
#include <windows.h>
#include <stdio.h>
char debugmembuf[100];
char debugbuf[200];
char debugmembuf[200];
void debug( const char *message )
{