Skip to content

Commit ef7acc5

Browse files
committed
Cleanups (?) and version bump
1 parent a23c194 commit ef7acc5

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

src/emu/cothread.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,22 +66,22 @@ class cothread
6666
cothread(cothread_t existing_thread);
6767
cothread(cothread_entry_delegate entry, size_t stack = 16384);
6868
~cothread() { if (m_creator_cothread != NULL) co_delete(m_cothread); }
69-
69+
7070
// switching
7171
void make_active() { co_switch(m_cothread); }
72-
72+
7373
private:
7474
// internal helpers
7575
static void cothread_entry();
7676

7777
// internal state
78-
cothread_t m_cothread;
78+
cothread_t m_cothread;
7979
cothread_t m_creator_cothread;
8080
cothread_entry_delegate m_entry;
81-
81+
8282
// static state
83-
static osd_lock * s_create_lock;
84-
static cothread * s_create_cothread;
83+
static osd_lock * s_create_lock;
84+
static cothread * s_create_cothread;
8585
};
8686

8787

src/emu/diexec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class device_execute_interface : public device_interface
269269
static void static_empty_event_queue(running_machine &machine, void *ptr, int param);
270270
void empty_event_queue();
271271
};
272-
272+
273273
// internal state
274274
cothread m_cothread; // thread used for execution
275275

src/emu/video/mc6845.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,16 @@ class mc6845_device : public device_t,
117117

118118
/* write to the currently selected register */
119119
DECLARE_WRITE8_MEMBER( register_w );
120-
120+
121121
// read display enable line state
122122
DECLARE_READ_LINE_MEMBER( de_r );
123-
123+
124124
// read cursor line state
125125
DECLARE_READ_LINE_MEMBER( cursor_r );
126-
126+
127127
// read horizontal sync line state
128128
DECLARE_READ_LINE_MEMBER( hsync_r );
129-
129+
130130
// read vertical sync line state
131131
DECLARE_READ_LINE_MEMBER( vsync_r );
132132

src/mame/mame.lst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,10 +1279,10 @@ nss_sten // 199? Nintendo
12791279

12801280
// Super Famicom Box Games
12811281
sfcbox
1282-
pss61 // 199? Nintendo
1282+
pss61 // 199? Nintendo
12831283
pss62 // 199? T & E Soft / I'Max
1284-
pss63 // 199? Nintendo / BPS
1285-
pss64 // 199? Nintendo / Hudson Soft
1284+
pss63 // 199? Nintendo / BPS
1285+
pss64 // 199? Nintendo / Hudson Soft
12861286

12871287

12881288

src/osd/windows/drawd3d.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ static void drawd3d_window_destroy(win_window_info *window)
509509

510510
// free our effects
511511
d3d->hlsl->delete_resources();
512-
512+
513513
// delete the HLSL interface
514514
global_free(d3d->hlsl);
515515

@@ -938,7 +938,7 @@ static void device_delete_resources(d3d_info *d3d)
938938

939939
// free our effects
940940
d3d->hlsl->delete_resources();
941-
941+
942942
global_free(d3d->hlsl);
943943
}
944944

src/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
***************************************************************************/
3939

4040
extern const char build_version[];
41-
const char build_version[] = "0.142u6 ("__DATE__")";
41+
const char build_version[] = "0.143 ("__DATE__")";

0 commit comments

Comments
 (0)