Fix tournament screen tests not matching `OsuGameBase` resolution

This would cause things to look completely out of whack.

The numbers here match `DrawSizePreservingFillContainer` defaults as
used by `OsuGameBase.CreateScalingContainer()`.
This commit is contained in:
Dean Herbert 2023-08-31 18:46:47 +09:00
parent 4b68493084
commit 540c58c359
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ private partial class TournamentScalingContainer : DrawSizePreservingFillContain
{
public TournamentScalingContainer()
{
TargetDrawSize = new Vector2(1920, 1080);
TargetDrawSize = new Vector2(1024, 768);
RelativeSizeAxes = Axes.Both;
}