summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/cps3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cps3.h')
-rw-r--r--src/mame/includes/cps3.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mame/includes/cps3.h b/src/mame/includes/cps3.h
index 92c87dd7455..e69947a38c9 100644
--- a/src/mame/includes/cps3.h
+++ b/src/mame/includes/cps3.h
@@ -123,9 +123,9 @@ public:
void cps3_process_character_dma(UINT32 address);
void copy_from_nvram();
inline void cps3_drawgfxzoom(bitmap_rgb32 &dest_bmp, const rectangle &clip, gfx_element *gfx,
- unsigned int code, unsigned int color, int flipx, int flipy, int sx, int sy,
- int transparency, int transparent_color,
- int scalex, int scaley, bitmap_ind8 *pri_buffer, UINT32 pri_mask);
+ unsigned int code, unsigned int color, int flipx, int flipy, int sx, int sy,
+ int transparency, int transparent_color,
+ int scalex, int scaley, bitmap_ind8 *pri_buffer, UINT32 pri_mask);
};
@@ -140,13 +140,13 @@ public:
struct cps3_voice
{
- cps3_voice() :
- pos(0),
- frac(0)
- {
- memset(regs, 0, sizeof(UINT32)*8);
- }
-
+ cps3_voice() :
+ pos(0),
+ frac(0)
+ {
+ memset(regs, 0, sizeof(UINT32)*8);
+ }
+
UINT32 regs[8];
UINT32 pos;
UINT16 frac;
@@ -155,7 +155,7 @@ struct cps3_voice
// ======================> cps3_sound_device
class cps3_sound_device : public device_t,
- public device_sound_interface
+ public device_sound_interface
{
public:
cps3_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
@@ -169,8 +169,8 @@ protected:
virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples);
public:
- DECLARE_WRITE32_MEMBER( cps3_sound_w );
- DECLARE_READ32_MEMBER( cps3_sound_r );
+ DECLARE_WRITE32_MEMBER( cps3_sound_w );
+ DECLARE_READ32_MEMBER( cps3_sound_r );
private:
sound_stream *m_stream;