You can't, at least natively.
Here I can only play normally if I hide the taskbar, which I hate doing, so with the help of ChatGPT I made a script to resize the window:
Code:
$height = 720
$width = [math]::Round($height / 2.17)
Add-Type @"
using System;
using System.Runtime.InteropServices;
public class Win32 {
[DllImport("user32.dll")]
public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
}
"@
$hwnd = (Get-Process -Name "NTRMobile").MainWindowHandle
[Win32]::MoveWindow($hwnd, (1366 - $width) / 2, 0, $width, $height, $true)
Edit the first line to the desired height (My screen is 768px tall, with 30px from the taskbark, the game should be 738px) and it should work, I think.