diff options
author | 2012-09-17 06:49:13 +0000 | |
---|---|---|
committer | 2012-09-17 06:49:13 +0000 | |
commit | e25c13f2532730ebf50d0cffa0147393fd8e0228 (patch) | |
tree | a6c25d1de7041f26afed559dbc6670fa550e6b41 /src/mess/video/crt.c | |
parent | f97e8f00818bd8d898facc206ed33ab72cf10a75 (diff) |
Clean-ups and version bumpmame0147
note: hoarded dump removed too from coco_cart.xml, this will not be tolerated
Diffstat (limited to 'src/mess/video/crt.c')
-rw-r--r-- | src/mess/video/crt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/video/crt.c b/src/mess/video/crt.c index ca3f34b8cf4..48b4798dd29 100644 --- a/src/mess/video/crt.c +++ b/src/mess/video/crt.c @@ -32,7 +32,7 @@ Theory of operation: #include "video/crt.h" -struct point +struct point { int intensity; /* current intensity of the pixel */ /* a node is not in the list when (intensity == -1) */ @@ -44,7 +44,7 @@ enum intensity_pixel_not_in_list = -1 /* special value that tells that the node is not in list */ }; -struct crt_t +struct crt_t { point *list; /* array of (crt_window_width*crt_window_height) point */ int *list_head; /* head of the list of lit pixels (index in the array) */ |