diff options
author | 2010-07-01 05:01:12 +0000 | |
---|---|---|
committer | 2010-07-01 05:01:12 +0000 | |
commit | 7bdb4bf0830ed72fc4b81f26bdd192cb2c2da9e2 (patch) | |
tree | 1250459625b6c5b04ff1fb93e647258e61118748 /src/emu/diexec.c | |
parent | 884cadfde0862228676765d522b1dbcde5236a61 (diff) |
Use UINT64s for converting cycles <-> clocks.
Diffstat (limited to 'src/emu/diexec.c')
-rw-r--r-- | src/emu/diexec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/diexec.c b/src/emu/diexec.c index ef231a877af..7813d7e7991 100644 --- a/src/emu/diexec.c +++ b/src/emu/diexec.c @@ -97,7 +97,7 @@ device_config_execute_interface::~device_config_execute_interface() // of clocks to cycles, rounding down if necessary //------------------------------------------------- -UINT32 device_config_execute_interface::execute_clocks_to_cycles(UINT32 clocks) const +UINT64 device_config_execute_interface::execute_clocks_to_cycles(UINT64 clocks) const { return clocks; } @@ -108,7 +108,7 @@ UINT32 device_config_execute_interface::execute_clocks_to_cycles(UINT32 clocks) // of cycles to clocks, rounding down if necessary //------------------------------------------------- -UINT32 device_config_execute_interface::execute_cycles_to_clocks(UINT32 cycles) const +UINT64 device_config_execute_interface::execute_cycles_to_clocks(UINT64 cycles) const { return cycles; } |