Make libnds detect no SD in the R4 when no FAT image is selected or fails to get created.
This commit is contained in:
parent
4033c0e470
commit
35706cbd97
|
@ -128,10 +128,10 @@ public:
|
|||
switch(cmd)
|
||||
{
|
||||
case 0xB0:
|
||||
val = 0x1F4;
|
||||
val = (img) ? 0x1F4 : 0x1F2;
|
||||
break;
|
||||
case 0xB9:
|
||||
val = (rand() % 100) ? 0x1F4 : 0;
|
||||
val = (rand() % 100) ? (img) ? 0x1F4 : 0x1F2 : 0;
|
||||
break;
|
||||
case 0xBB:
|
||||
case 0xBC:
|
||||
|
|
Loading…
Reference in New Issue