Make libnds detect no SD in the R4 when no FAT image is selected or fails to get created.

This commit is contained in:
thelemonman 2013-10-15 20:40:22 +00:00
parent 4033c0e470
commit 35706cbd97
1 changed files with 2 additions and 2 deletions

View File

@ -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: