diff options
author | 2015-12-19 18:47:54 +0100 | |
---|---|---|
committer | 2015-12-19 18:47:54 +0100 | |
commit | 497c20443163d4aca9378ff846b17c6cfd5eb563 (patch) | |
tree | 44ce999ada00b322feccbc1e5ad78f2793804ced /src/devices/cpu/jaguar/jaguar.h | |
parent | 98b121c52dd38671afec019eba8f34f6e333c92c (diff) |
global_alloc_array to std::make_unique where applicable (nw)
Diffstat (limited to 'src/devices/cpu/jaguar/jaguar.h')
-rw-r--r-- | src/devices/cpu/jaguar/jaguar.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/devices/cpu/jaguar/jaguar.h b/src/devices/cpu/jaguar/jaguar.h index 49f6e48d5c7..d2ab5f235e6 100644 --- a/src/devices/cpu/jaguar/jaguar.h +++ b/src/devices/cpu/jaguar/jaguar.h @@ -164,6 +164,10 @@ protected: static const UINT32 convert_zero[32]; bool m_tables_referenced; + UINT32 table_refcount; + std::unique_ptr<UINT16[]> mirror_table; + std::unique_ptr<UINT8[]> condition_table; + const op_func *m_table; void abs_rn(UINT16 op); |