Don't clamp touch/screen coord transformations
This commit is contained in:
parent
c65a11eb2b
commit
0c6df6e79b
Binary file not shown.
|
@ -70,7 +70,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
|
|||
else
|
||||
{
|
||||
// no GL context, so nothing fancy can be applied
|
||||
y = Math.Max(0, y - 192);
|
||||
y -= 192;
|
||||
}
|
||||
|
||||
return new(x, y);
|
||||
|
@ -85,7 +85,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
|
|||
else
|
||||
{
|
||||
// no GL context, so nothing fancy can be applied
|
||||
y = Math.Min(256, y + 192);
|
||||
y += 192;
|
||||
}
|
||||
|
||||
return new(x, y);
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
|
||||
namespace Frontend
|
||||
{
|
||||
extern float TouchMtx[6];
|
||||
extern bool BotEnable;
|
||||
extern void M23_Transform(float* m, float& x, float& y);
|
||||
}
|
||||
|
||||
|
@ -323,10 +325,18 @@ ECL_EXPORT void SetScreenSettings(const ScreenSettings* screenSettings, u32* wid
|
|||
|
||||
ECL_EXPORT void GetTouchCoords(int* x, int* y)
|
||||
{
|
||||
if (!Frontend::GetTouchCoords(*x, *y, true))
|
||||
float vx = *x;
|
||||
float vy = *y;
|
||||
|
||||
Frontend::M23_Transform(Frontend::TouchMtx, vx, vy);
|
||||
|
||||
*x = vx;
|
||||
*y = vy;
|
||||
|
||||
if (!Frontend::BotEnable)
|
||||
{
|
||||
*x = 0;
|
||||
*y = 0;
|
||||
// top screen only, offset y to account for that
|
||||
*y -= 192;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -342,9 +352,18 @@ ECL_EXPORT void GetScreenCoords(float* x, float* y)
|
|||
}
|
||||
}
|
||||
|
||||
// bottom screen not visible
|
||||
*x = 0;
|
||||
*y = 0;
|
||||
// top screen only, offset y to account for that
|
||||
*y += 192;
|
||||
|
||||
for (int i = 0; i < NumScreens; i++)
|
||||
{
|
||||
// top screen
|
||||
if (ScreenKinds[i] == 0)
|
||||
{
|
||||
Frontend::M23_Transform(&ScreenMatrix[i * 6], *x, *y);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d4899fe9b9669edf009b52b2d432280c597cbdfd
|
||||
Subproject commit 3c9510523bfbdf7d39e5185dcfbc72146bb8b52f
|
Loading…
Reference in New Issue