From 363f2e40d4f0bc6a184eb07c214feb4f41b2f6ae Mon Sep 17 00:00:00 2001 From: "e.bovendeur" Date: Fri, 16 Oct 2009 04:18:00 +0000 Subject: [PATCH] Fixed issue with game installations --- source/usbloader/wbfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/usbloader/wbfs.c b/source/usbloader/wbfs.c index 127d0681..84cee22b 100644 --- a/source/usbloader/wbfs.c +++ b/source/usbloader/wbfs.c @@ -314,7 +314,7 @@ s32 WBFS_Open(void) { return -1; // Save the new sector size, so it will be used in read and write calls - sector_size = hdd->head->hd_sec_sz_s; + sector_size = 1 << hdd->head->hd_sec_sz_s; return 0; }