File tree Expand file tree Collapse file tree 6 files changed +17
-17
lines changed Expand file tree Collapse file tree 6 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -66,22 +66,22 @@ class cothread
66
66
cothread (cothread_t existing_thread);
67
67
cothread (cothread_entry_delegate entry, size_t stack = 16384 );
68
68
~cothread () { if (m_creator_cothread != NULL ) co_delete (m_cothread); }
69
-
69
+
70
70
// switching
71
71
void make_active () { co_switch (m_cothread); }
72
-
72
+
73
73
private:
74
74
// internal helpers
75
75
static void cothread_entry ();
76
76
77
77
// internal state
78
- cothread_t m_cothread;
78
+ cothread_t m_cothread;
79
79
cothread_t m_creator_cothread;
80
80
cothread_entry_delegate m_entry;
81
-
81
+
82
82
// 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;
85
85
};
86
86
87
87
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ class device_execute_interface : public device_interface
269
269
static void static_empty_event_queue (running_machine &machine, void *ptr, int param);
270
270
void empty_event_queue ();
271
271
};
272
-
272
+
273
273
// internal state
274
274
cothread m_cothread; // thread used for execution
275
275
Original file line number Diff line number Diff line change @@ -117,16 +117,16 @@ class mc6845_device : public device_t,
117
117
118
118
/* write to the currently selected register */
119
119
DECLARE_WRITE8_MEMBER ( register_w );
120
-
120
+
121
121
// read display enable line state
122
122
DECLARE_READ_LINE_MEMBER ( de_r );
123
-
123
+
124
124
// read cursor line state
125
125
DECLARE_READ_LINE_MEMBER ( cursor_r );
126
-
126
+
127
127
// read horizontal sync line state
128
128
DECLARE_READ_LINE_MEMBER ( hsync_r );
129
-
129
+
130
130
// read vertical sync line state
131
131
DECLARE_READ_LINE_MEMBER ( vsync_r );
132
132
Original file line number Diff line number Diff line change @@ -1279,10 +1279,10 @@ nss_sten // 199? Nintendo
1279
1279
1280
1280
// Super Famicom Box Games
1281
1281
sfcbox
1282
- pss61 // 199? Nintendo
1282
+ pss61 // 199? Nintendo
1283
1283
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
1286
1286
1287
1287
1288
1288
Original file line number Diff line number Diff line change @@ -509,7 +509,7 @@ static void drawd3d_window_destroy(win_window_info *window)
509
509
510
510
// free our effects
511
511
d3d -> hlsl -> delete_resources ();
512
-
512
+
513
513
// delete the HLSL interface
514
514
global_free (d3d -> hlsl );
515
515
@@ -938,7 +938,7 @@ static void device_delete_resources(d3d_info *d3d)
938
938
939
939
// free our effects
940
940
d3d -> hlsl -> delete_resources ();
941
-
941
+
942
942
global_free (d3d -> hlsl );
943
943
}
944
944
Original file line number Diff line number Diff line change 38
38
***************************************************************************/
39
39
40
40
extern const char build_version [];
41
- const char build_version [] = "0.142u6 (" __DATE__ ")" ;
41
+ const char build_version [] = "0.143 (" __DATE__ ")" ;
You can’t perform that action at this time.
0 commit comments