cemu_graphic_packs/Source/Wipeout3/rules.txt
2017-12-08 20:17:52 +11:00

39 lines
1.0 KiB
Plaintext

<?php
include 'Source/functions.php';
$fullWidth = $argv[1];
$fullHeight = $argv[2];
$scaleFactorX = $fullWidth / 1280.0;
$scaleFactorY = $fullHeight / 720.0;
$title = get_title($fullWidth, $fullHeight);
?>
[Definition]
titleIds = 000500001010E800
name = "Wipeout 3 - <?=$title?>"
version = 2
[TextureRedefine] # tv
width = 1280
height = 720
tileModesExcluded = 0x001 # fix for the green intro video (with cemu hook installed)
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] # half-res
width = 640
height = 360
tileModesExcluded = 0x001 # fix for the green intro video (with cemu hook installed)
overwriteWidth = <?=round($scaleFactorX*640)?>
overwriteHeight = <?=round($scaleFactorY*360)?>
[TextureRedefine]# q-res
width = 320
height = 180
overwriteWidth = <?=round($scaleFactorX*320)?>
overwriteHeight = <?=round($scaleFactorY*180)?>
[TextureRedefine] # gamepad
width = 854
height = 480
#overwriteWidth = <?=round($scaleFactorX*1280)?>
#overwriteHeight = <?=round($scaleFactorY*720)?>