diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2014-02-23 15:14:27 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2014-02-28 12:28:19 +0100 |
| commit | 6914eca167d35b4ffb3e1979bb690b378bb8448a (patch) | |
| tree | 6b635bbccc4a04ed7e1c1db37a52ab27bc8aa692 /Source/Core/DiscIO | |
| parent | a3508823def6b3a013436e91653ed758aadf27eb (diff) | |
Fix various warnings reported by clang
- mostly remove unused variables
- rename some generic JIT identifiers
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/WbfsBlob.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/DiscIO/WbfsBlob.cpp b/Source/Core/DiscIO/WbfsBlob.cpp index b51c14ae9a..4e77d9e959 100644 --- a/Source/Core/DiscIO/WbfsBlob.cpp +++ b/Source/Core/DiscIO/WbfsBlob.cpp @@ -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) { |
