cemu_graphic_packs/Source/WoollyWorld/rules.txt
Crementif d95c760c5c Fixed Yoshi's Wooly World black screen
Fixes the problem. The actual DoF shader adjustment (the one included was a placeholder or something from me??! didn't do anything) made my computer crash in Nsight everytime I tried anything to change the related value (it's unique) so might try tomorrow. Anyway, closing the related issue.
2017-12-26 01:10:57 +01:00

27 lines
663 B
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 = 0005000010131F00,0005000010184E00,0005000010184D00
name = "Yoshi's Woolly World - <?=$title?>"
version = 2
[TextureRedefine] # tv
width = 1280
height = 720
formatsExcluded = 0x033
overwriteWidth = <?=round($scaleFactorX*1280)?>
overwriteHeight = <?=round($scaleFactorY*720)?>
[TextureRedefine] # half res
width = 640
height = 360
overwriteWidth = <?=round($scaleFactorX*640)?>
overwriteHeight = <?=round($scaleFactorY*360)?>