summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/output.c')
-rw-r--r--src/emu/output.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/emu/output.c b/src/emu/output.c
index eb9f250b1a5..363cd1180d1 100644
--- a/src/emu/output.c
+++ b/src/emu/output.c
@@ -18,7 +18,7 @@
CONSTANTS
***************************************************************************/
-#define HASH_SIZE 53
+#define HASH_SIZE 53
@@ -28,20 +28,20 @@
struct output_notify
{
- output_notify * next; /* link to next item */
- output_notifier_func notifier; /* callback to call */
- void * param; /* parameter to pass the callback */
+ output_notify * next; /* link to next item */
+ output_notifier_func notifier; /* callback to call */
+ void * param; /* parameter to pass the callback */
};
struct output_item
{
- output_item * next; /* next item in list */
- const char * name; /* string name of the item */
- UINT32 hash; /* hash for this item name */
- UINT32 id; /* unique ID for this item */
- INT32 value; /* current value */
- output_notify * notifylist; /* list of notifier callbacks */
+ output_item * next; /* next item in list */
+ const char * name; /* string name of the item */
+ UINT32 hash; /* hash for this item name */
+ UINT32 id; /* unique ID for this item */
+ INT32 value; /* current value */
+ output_notify * notifylist; /* list of notifier callbacks */
};