mirror of
https://github.com/holub/mame
synced 2025-04-20 15:32:45 +03:00
Remove another c99 non-const array. (nw)
This commit is contained in:
parent
5489a72aa9
commit
2d934ef214
@ -62,7 +62,8 @@ UINT32 truthtable_desc_t::get_ignored_extended(UINT32 i)
|
||||
* may change the output
|
||||
*/
|
||||
int bits = (1<<count_bits(nign));
|
||||
int t[bits];
|
||||
plinearlist_t<int> t;
|
||||
t.set_count(bits);
|
||||
|
||||
for (UINT32 j=1; j<bits; j++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user