summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2011-06-28 14:28:46 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2011-06-28 14:28:46 +0000
commitef7acc5d65291bb0a4934e1eec9a9744de0bd8da (patch)
treee9674ee9397c613da8e82d3dbc378e7de2946cea /src/emu
parenta23c194ed5de7cedbb45434768db7b46565baec7 (diff)
Cleanups (?) and version bumpmame0143
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/cothread.h12
-rw-r--r--src/emu/diexec.h2
-rw-r--r--src/emu/video/mc6845.h8
3 files changed, 11 insertions, 11 deletions
diff --git a/src/emu/cothread.h b/src/emu/cothread.h
index 243a02ecf27..5251216b59d 100644
--- a/src/emu/cothread.h
+++ b/src/emu/cothread.h
@@ -66,22 +66,22 @@ public:
cothread(cothread_t existing_thread);
cothread(cothread_entry_delegate entry, size_t stack = 16384);
~cothread() { if (m_creator_cothread != NULL) co_delete(m_cothread); }
-
+
// switching
void make_active() { co_switch(m_cothread); }
-
+
private:
// internal helpers
static void cothread_entry();
// internal state
- cothread_t m_cothread;
+ cothread_t m_cothread;
cothread_t m_creator_cothread;
cothread_entry_delegate m_entry;
-
+
// static state
- static osd_lock * s_create_lock;
- static cothread * s_create_cothread;
+ static osd_lock * s_create_lock;
+ static cothread * s_create_cothread;
};
diff --git a/src/emu/diexec.h b/src/emu/diexec.h
index 55fb022f973..b3acc19c031 100644
--- a/src/emu/diexec.h
+++ b/src/emu/diexec.h
@@ -269,7 +269,7 @@ protected:
static void static_empty_event_queue(running_machine &machine, void *ptr, int param);
void empty_event_queue();
};
-
+
// internal state
cothread m_cothread; // thread used for execution
diff --git a/src/emu/video/mc6845.h b/src/emu/video/mc6845.h
index eb7ace815b9..21b4489d885 100644
--- a/src/emu/video/mc6845.h
+++ b/src/emu/video/mc6845.h
@@ -117,16 +117,16 @@ public:
/* write to the currently selected register */
DECLARE_WRITE8_MEMBER( register_w );
-
+
// read display enable line state
DECLARE_READ_LINE_MEMBER( de_r );
-
+
// read cursor line state
DECLARE_READ_LINE_MEMBER( cursor_r );
-
+
// read horizontal sync line state
DECLARE_READ_LINE_MEMBER( hsync_r );
-
+
// read vertical sync line state
DECLARE_READ_LINE_MEMBER( vsync_r );