From b67c93bb623dd3c0976a47c34bc142dc9cd51cde Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 25 Dec 2017 13:56:56 -0800 Subject: [PATCH] Modify shader scale was just applying the scale from 1280 instead of 960 --- .../PokkenTournament/b2fecd8319ee0096_0000000000079249_ps.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/PokkenTournament/b2fecd8319ee0096_0000000000079249_ps.txt b/Source/PokkenTournament/b2fecd8319ee0096_0000000000079249_ps.txt index 067c859b..84f4b43b 100644 --- a/Source/PokkenTournament/b2fecd8319ee0096_0000000000079249_ps.txt +++ b/Source/PokkenTournament/b2fecd8319ee0096_0000000000079249_ps.txt @@ -2,7 +2,7 @@ include 'Source/functions.php'; $fullWidth = $argv[1]; $fullHeight = $argv[2]; -$scaleFactorX = always_decimal_format($fullWidth / 1280.0); +$scaleFactorX = always_decimal_format($fullWidth / 960.0); $scaleFactorY = always_decimal_format($fullHeight / 720.0); ?> #version 420