Update #1 - Credits Fix

This commit is contained in:
LAX1DUDE
2022-12-25 20:11:11 -08:00
parent e7179fad45
commit 4eef04447e
4 changed files with 5 additions and 9 deletions

View File

@ -220,8 +220,8 @@ public class PlatformApplication {
public static void openCreditsPopup(String text) {
Window currentWin = Window.current();
int w = (int)(530 * currentWin.getDevicePixelRatio());
int h = (int)(450 * currentWin.getDevicePixelRatio());
int w = (int)(850 * currentWin.getDevicePixelRatio());
int h = (int)(700 * currentWin.getDevicePixelRatio());
int x = (currentWin.getScreen().getWidth() - w) / 2;
int y = (currentWin.getScreen().getHeight() - h) / 2;