Config: Set a sane default value for HddSizeSectors

This commit is contained in:
TheLastRar 2022-03-06 20:12:55 +00:00 committed by refractionpcsx2
parent 92900d8dc8
commit 134242973b
1 changed files with 1 additions and 1 deletions

View File

@ -668,7 +668,7 @@ struct Pcsx2Config
* which is 2^32 * 512 byte sectors * which is 2^32 * 512 byte sectors
* Note that we don't yet support * Note that we don't yet support
* 48bit LBA, so our limit is lower */ * 48bit LBA, so our limit is lower */
uint HddSizeSectors{0}; uint HddSizeSectors{40 * (1024 * 1024 * 1024 / 512)};
DEV9Options(); DEV9Options();