mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-28 05:52:38 +00:00
DiscIO: Make variables constexpr
This commit is contained in:
parent
f8bf35e6f0
commit
f6ba69f99a
5 changed files with 16 additions and 16 deletions
|
@ -20,9 +20,9 @@
|
|||
|
||||
namespace DiscIO
|
||||
{
|
||||
static const u64 WII_SECTOR_SIZE = 0x8000;
|
||||
static const u64 WII_SECTOR_COUNT = 143432 * 2;
|
||||
static const u64 WII_DISC_HEADER_SIZE = 256;
|
||||
static constexpr u64 WII_SECTOR_SIZE = 0x8000;
|
||||
static constexpr u64 WII_SECTOR_COUNT = 143432 * 2;
|
||||
static constexpr u64 WII_DISC_HEADER_SIZE = 256;
|
||||
|
||||
WbfsFileReader::WbfsFileReader(File::IOFile file, const std::string& path)
|
||||
: m_size(0), m_good(false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue