mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
netlist: fix issues with 1x1 matrix. [Tafoid]
- fixes gamemachine.cpp, breakout.cpp
This commit is contained in:
parent
8f83e4392f
commit
777f93b083
@ -181,7 +181,7 @@ namespace devices
|
|||||||
break;
|
break;
|
||||||
case matrix_sort_type_e::PREFER_IDENTITY_TOP_LEFT:
|
case matrix_sort_type_e::PREFER_IDENTITY_TOP_LEFT:
|
||||||
{
|
{
|
||||||
for (std::size_t k = 0; k < iN - 2; k++)
|
for (std::size_t k = 0; k < iN - 1; k++)
|
||||||
{
|
{
|
||||||
auto pk = get_left_right_of_diag(k,k);
|
auto pk = get_left_right_of_diag(k,k);
|
||||||
for (std::size_t i = k+1; i < iN; i++)
|
for (std::size_t i = k+1; i < iN; i++)
|
||||||
|
Loading…
Reference in New Issue
Block a user