summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/textbuf.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-01-11 07:32:46 +0000
commit0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch)
tree234109de1123b13f217494af4b3f8efad346d5cc /src/emu/debug/textbuf.c
parent111157ca09a9ff60fe4a9ba49173c315e94314fa (diff)
Cleanups and version bumpmame0148
Diffstat (limited to 'src/emu/debug/textbuf.c')
-rw-r--r--src/emu/debug/textbuf.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/emu/debug/textbuf.c b/src/emu/debug/textbuf.c
index 0721c75327f..4551de4e6cb 100644
--- a/src/emu/debug/textbuf.c
+++ b/src/emu/debug/textbuf.c
@@ -18,7 +18,7 @@
CONSTANTS
***************************************************************************/
-#define MAX_LINE_LENGTH 250
+#define MAX_LINE_LENGTH 250
@@ -28,16 +28,16 @@
struct text_buffer
{
- char * buffer;
- INT32 * lineoffs;
- INT32 bufsize;
- INT32 bufstart;
- INT32 bufend;
- INT32 linesize;
- INT32 linestart;
- INT32 lineend;
- UINT32 linestartseq;
- INT32 maxwidth;
+ char * buffer;
+ INT32 * lineoffs;
+ INT32 bufsize;
+ INT32 bufstart;
+ INT32 bufend;
+ INT32 linesize;
+ INT32 linestart;
+ INT32 lineend;
+ UINT32 linestartseq;
+ INT32 maxwidth;
};