Fix various warnings reported by clang

- mostly remove unused variables
- rename some generic JIT identifiers
This commit is contained in:
Tillmann Karras
2014-02-23 15:14:27 +01:00
parent a3508823de
commit 6914eca167
17 changed files with 37 additions and 54 deletions

View File

@ -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)
{