ref: 43958d27717ce27042b87462dd954abc58e6a7d7
parent: a4248b13e2a4541ddf278f8617d2ce727507713e
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu May 23 10:28:44 EDT 2019
...For real, this time
--- a/src/Frame.cpp
+++ b/src/Frame.cpp
@@ -41,7 +41,7 @@
// Widescreen/tallscreen-safe behaviour
if (map_w * 0x10 < WINDOW_WIDTH)
{
- gFrame.x = -(((WINDOW_WIDTH - map_w * 0x10) * 0x200) / 2);
+ gFrame.x = -(((WINDOW_WIDTH - (map_w - 1) * 0x10) * 0x200) / 2);
}
else
{
@@ -56,7 +56,7 @@
if (map_l * 0x10 < WINDOW_HEIGHT)
{
- gFrame.y = -(((WINDOW_HEIGHT - map_l * 0x10) * 0x200) / 2);
+ gFrame.y = -(((WINDOW_HEIGHT - (map_l - 1) * 0x10) * 0x200) / 2);
}
else
{
@@ -148,7 +148,7 @@
// Widescreen/tallscreen-safe behaviour
if (map_w * 0x10 < WINDOW_WIDTH)
{
- gFrame.x = -(((WINDOW_WIDTH - map_w * 0x10) * 0x200) / 2);
+ gFrame.x = -(((WINDOW_WIDTH - (map_w - 1) * 0x10) * 0x200) / 2);
}
else
{
@@ -161,7 +161,7 @@
if (map_l * 0x10 < WINDOW_HEIGHT)
{
- gFrame.y = -(((WINDOW_HEIGHT - map_l * 0x10) * 0x200) / 2);
+ gFrame.y = -(((WINDOW_HEIGHT - (map_l - 1) * 0x10) * 0x200) / 2);
}
else
{
@@ -221,7 +221,7 @@
// Widescreen/tallscreen-safe behaviour
if (map_w * 0x10 < WINDOW_WIDTH)
{
- gFrame.x = -(((WINDOW_WIDTH - map_w * 0x10) * 0x200) / 2);
+ gFrame.x = -(((WINDOW_WIDTH - (map_w - 1) * 0x10) * 0x200) / 2);
}
else
{
@@ -234,7 +234,7 @@
if (map_l * 0x10 < WINDOW_HEIGHT)
{
- gFrame.y = -(((WINDOW_HEIGHT - map_l * 0x10) * 0x200) / 2);
+ gFrame.y = -(((WINDOW_HEIGHT - (map_l - 1) * 0x10) * 0x200) / 2);
}
else
{