summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-05-23 06:46:22 +0200
committerLioncash <mathew1800@gmail.com>2015-05-23 06:46:22 +0200
commitebca3a490223b9f78728b79f02b810728cca77aa (patch)
tree1b8e558b4c2001f3abf2ffb5b83e09a109fb0773 /src/core
parentvideo_core/utils: Remove unused variables in GetMortonOffset (diff)
downloadyuzu-ebca3a490223b9f78728b79f02b810728cca77aa.tar
yuzu-ebca3a490223b9f78728b79f02b810728cca77aa.tar.gz
yuzu-ebca3a490223b9f78728b79f02b810728cca77aa.tar.bz2
yuzu-ebca3a490223b9f78728b79f02b810728cca77aa.tar.lz
yuzu-ebca3a490223b9f78728b79f02b810728cca77aa.tar.xz
yuzu-ebca3a490223b9f78728b79f02b810728cca77aa.tar.zst
yuzu-ebca3a490223b9f78728b79f02b810728cca77aa.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/y2r_u.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/hle/service/y2r_u.cpp b/src/core/hle/service/y2r_u.cpp
index 15987e028..19bfde756 100644
--- a/src/core/hle/service/y2r_u.cpp
+++ b/src/core/hle/service/y2r_u.cpp
@@ -236,7 +236,6 @@ static void StartConversion(Service::Interface* self) {
const size_t tile_size = 8 * 8 * bpp;
for (size_t line = 0; line < input_lines;) {
- size_t tile_y = line / 8;
size_t max_line = line + 8;
for (; line < max_line; ++line) {