summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-06-07 01:07:43 -0400
committerLioncash <mathew1800@gmail.com>2017-06-07 01:20:54 -0400
commitd9bb2ce3afa234a4abcde64b35809cd224982d84 (patch)
tree68c43083814a86bc12decb0eeb77c6bb58a9c46c /Source
parentb676edd80c2d1056f0cb28383120e9284336866c (diff)
DVDInterface: Amend lint formatting issues
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/DVD/DVDInterface.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/Core/HW/DVD/DVDInterface.cpp b/Source/Core/Core/HW/DVD/DVDInterface.cpp
index 828157d744..2ea86942da 100644
--- a/Source/Core/Core/HW/DVD/DVDInterface.cpp
+++ b/Source/Core/Core/HW/DVD/DVDInterface.cpp
@@ -1214,9 +1214,8 @@ void ScheduleReads(u64 offset, u32 length, const DiscIO::Partition& partition, u
u32 buffered_blocks = 0;
u32 unbuffered_blocks = 0;
- const u32 bytes_per_chunk = partition == DiscIO::PARTITION_NONE ?
- DVD_ECC_BLOCK_SIZE :
- DiscIO::VolumeWii::BLOCK_DATA_SIZE;
+ const u32 bytes_per_chunk =
+ partition == DiscIO::PARTITION_NONE ? DVD_ECC_BLOCK_SIZE : DiscIO::VolumeWii::BLOCK_DATA_SIZE;
while (length > 0)
{