diff options
author | 2012-09-24 14:09:14 +0000 | |
---|---|---|
committer | 2012-09-24 14:09:14 +0000 | |
commit | ef6f5d0a52b1cbbc1418a248da72122e6958a958 (patch) | |
tree | 4dd325f2232bb5f4f9349599555846552d360d6c /src/emu/cpu/psx/sio.h | |
parent | 7a7fa028bdc4fe10253488ffb180fc113eb2a14a (diff) |
Introducing TIMER_CALLBACK_MEMBER and modernization part 1 (no whatsnew)
Diffstat (limited to 'src/emu/cpu/psx/sio.h')
-rw-r--r-- | src/emu/cpu/psx/sio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/psx/sio.h b/src/emu/cpu/psx/sio.h index 535f9c61f81..b925e05854a 100644 --- a/src/emu/cpu/psx/sio.h +++ b/src/emu/cpu/psx/sio.h @@ -82,7 +82,7 @@ protected: private: void sio_interrupt( int n_port ); void sio_timer_adjust( int n_port ); - void sio_clock(void *ptr, int param); + TIMER_CALLBACK_MEMBER(sio_clock); psx_sio port[2]; }; |