mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 09:55:08 +01:00
fixed wrong loop iteration range
This commit is contained in:
parent
0820814156
commit
27bbffdffb
@ -470,7 +470,7 @@ void md_cart_init(void)
|
|||||||
memset(&cart.hw, 0, sizeof(cart.hw));
|
memset(&cart.hw, 0, sizeof(cart.hw));
|
||||||
|
|
||||||
/* search for game into database */
|
/* search for game into database */
|
||||||
for (i=0; i < CART_CNT + 1; i++)
|
for (i=0; i<CART_CNT; i++)
|
||||||
{
|
{
|
||||||
/* known cart found ! */
|
/* known cart found ! */
|
||||||
if ((rominfo.checksum == rom_database[i].chk_1) &&
|
if ((rominfo.checksum == rom_database[i].chk_1) &&
|
||||||
@ -500,7 +500,7 @@ void md_cart_init(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* leave loop */
|
/* leave loop */
|
||||||
i = CART_CNT + 1;
|
i = CART_CNT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user