diff options
Diffstat (limited to 'src/yuzu')
| -rw-r--r-- | src/yuzu/debugger/graphics/graphics_surface.cpp | 6 | ||||
| -rw-r--r-- | src/yuzu/main.cpp | 2 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/src/yuzu/debugger/graphics/graphics_surface.cpp b/src/yuzu/debugger/graphics/graphics_surface.cpp index 0adbab27d..707747422 100644 --- a/src/yuzu/debugger/graphics/graphics_surface.cpp +++ b/src/yuzu/debugger/graphics/graphics_surface.cpp @@ -386,9 +386,9 @@ void GraphicsSurfaceWidget::OnUpdate() {      // TODO(bunnei): Will not work with BCn formats that swizzle 4x4 tiles.      // Needs to be fixed if we plan to use this feature more, otherwise we may remove it. -    auto unswizzled_data = -        Tegra::Texture::UnswizzleTexture(*address, 1, Tegra::Texture::BytesPerPixel(surface_format), -                                         surface_width, surface_height, 1U); +    auto unswizzled_data = Tegra::Texture::UnswizzleTexture( +        *address, 1, 1, Tegra::Texture::BytesPerPixel(surface_format), surface_width, +        surface_height, 1U);      auto texture_data = Tegra::Texture::DecodeTexture(unswizzled_data, surface_format,                                                        surface_width, surface_height); diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 114b39546..ab423a1cf 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1538,7 +1538,7 @@ void GMainWindow::OnReinitializeKeys(ReinitializeKeyBehavior behavior) {                     "derivation. It will be attempted but may not complete.<br><br>") +                      errors +                      tr("<br><br>You can get all of these and dump all of your games easily by " -                       "following <a href='https://yuzu-emu.org/help/quickstart/quickstart/'>the " +                       "following <a href='https://yuzu-emu.org/help/quickstart/'>the "                         "quickstart guide</a>. Alternatively, you can use another method of dumping "                         "to obtain all of your keys."));          } | 
