summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/debug.c4
-rw-r--r--uisimulator/win32/debug-win32.c4
2 files changed, 3 insertions, 5 deletions
diff --git a/firmware/debug.c b/firmware/debug.c
index 33b55a5c41..ba19a9616a 100644
--- a/firmware/debug.c
+++ b/firmware/debug.c
@@ -24,8 +24,8 @@
24#include "cpu.h" 24#include "cpu.h"
25 25
26#ifdef DEBUG 26#ifdef DEBUG
27static char debugmembuf[100]; 27static char debugmembuf[200];
28static char debugbuf[200]; 28static char debugbuf[400];
29#endif 29#endif
30 30
31#ifndef SIMULATOR /* allow non archos platforms to display output */ 31#ifndef SIMULATOR /* allow non archos platforms to display output */
diff --git a/uisimulator/win32/debug-win32.c b/uisimulator/win32/debug-win32.c
index b393372a76..dbc0f10e85 100644
--- a/uisimulator/win32/debug-win32.c
+++ b/uisimulator/win32/debug-win32.c
@@ -20,9 +20,7 @@
20#include <windows.h> 20#include <windows.h>
21#include <stdio.h> 21#include <stdio.h>
22 22
23char debugmembuf[100]; 23char debugmembuf[200];
24char debugbuf[200];
25
26 24
27void debug( const char *message ) 25void debug( const char *message )
28{ 26{