mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DSP switched mode 16 and 40
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3045 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -192,7 +192,7 @@ bool SDCardCreate(u32 disk_size /*in MB*/, char* filename)
|
||||
// Convert MB to bytes
|
||||
disk_size *= 1024*1024;
|
||||
|
||||
if (disk_size < 0x800000 || disk_size > 0x800000000)
|
||||
if (disk_size < 0x800000 || disk_size > 0x800000000ULL)
|
||||
ERROR_LOG(COMMON, "Trying to create SD Card image of size %iMB is out of range (8MB-32GB)", disk_size/(1024*1024));
|
||||
|
||||
sectors_per_disk = disk_size / 512;
|
||||
|
Reference in New Issue
Block a user