From daa71378725e02701ae7ffe2efbe90393c5f9a79 Mon Sep 17 00:00:00 2001 From: Lorenzooone Date: Tue, 14 May 2024 00:43:15 +0200 Subject: [PATCH] Fix bad DS crop --- source/frontend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/frontend.cpp b/source/frontend.cpp index e3a9a63..6c005f8 100755 --- a/source/frontend.cpp +++ b/source/frontend.cpp @@ -29,7 +29,7 @@ const CropData native_ds_crop = { .top_width = WIDTH_DS, .top_height = HEIGHT_DS, .top_x = (TOP_WIDTH_3DS - WIDTH_DS) / 2, .top_y = 0, .bot_width = WIDTH_DS, .bot_height = HEIGHT_DS, -.bot_x = (BOT_WIDTH_3DS - HEIGHT_DS) / 2, .bot_y = HEIGHT_3DS - HEIGHT_DS, +.bot_x = (BOT_WIDTH_3DS - WIDTH_DS) / 2, .bot_y = HEIGHT_3DS - HEIGHT_DS, .allowed_joint = true, .allowed_top = true, .allowed_bottom = true, .name = "Native DS"};