From 28b1fcdcd616ce502ee09ba166347bef3668ef98 Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 27 Apr 2009 06:27:15 +0000 Subject: [PATCH] remove that @&#@#ing assert from wifi which was the dumbest thing i ever did --- desmume/src/wifi.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/desmume/src/wifi.cpp b/desmume/src/wifi.cpp index 0214262f4..5ecd16b9f 100644 --- a/desmume/src/wifi.cpp +++ b/desmume/src/wifi.cpp @@ -927,8 +927,7 @@ u16 WIFI_read16(wifimac_t *wifi,u32 address) //printf("wifi: read reg 0x0214\n"); return 0x0009; case 0x19C: - assert(false); //luigi, please pick something to return from here - return 0; + return 0; //luigi, please pick something to return from here default: // printf("wifi: read unhandled reg %03X\n", address); return wifi->ioMem[address >> 1];