mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Fix various warnings reported by clang
- mostly remove unused variables - rename some generic JIT identifiers
This commit is contained in:
parent
a3508823de
commit
6914eca167
17 changed files with 37 additions and 54 deletions
|
@ -14,10 +14,9 @@
|
|||
|
||||
namespace DiscIO
|
||||
{
|
||||
const u64 wii_sector_size = 0x8000;
|
||||
const u64 wii_sector_count = 143432 * 2;
|
||||
const u64 wii_sector_log2 = 15;
|
||||
const u64 wii_disc_header_size = 256;
|
||||
static const u64 wii_sector_size = 0x8000;
|
||||
static const u64 wii_sector_count = 143432 * 2;
|
||||
static const u64 wii_disc_header_size = 256;
|
||||
|
||||
static inline u64 align(u64 value, u64 bounds)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue