summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2012-08-05 19:35:49 +0200
committerPierre Bourdon <delroth@gmail.com>2012-08-05 19:35:49 +0200
commit86a1899b9e9f196e23cb87f654fbc8e6efc9e862 (patch)
tree5f7f94ec593dccaf26e3f38584b024262dc1fd62 /Source/Core/DiscIO
parentd7d2e5b9bfce2512290728b8f6a958bb4e2b3fb5 (diff)
Fix a wrong data type in the WBFS Blob reader causing issues on x86 systems
Fixes issue 5489.
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/Src/WbfsBlob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/WbfsBlob.h b/Source/Core/DiscIO/Src/WbfsBlob.h
index 78b3ae8b78..300f658ddc 100644
--- a/Source/Core/DiscIO/Src/WbfsBlob.h
+++ b/Source/Core/DiscIO/Src/WbfsBlob.h
@@ -55,7 +55,7 @@ class WbfsFileReader : public IBlobReader
u32 hd_sector_count;
u64 wbfs_sector_size;
- u64 wbfs_sector_shift;
+ u8 wbfs_sector_shift;
u64 wbfs_sector_count;
u64 m_disc_info_size;