mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-23 18:19:16 +01:00
26 lines
669 B
Plaintext
26 lines
669 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 = 0005000010132D00,0005000010132C00,0005000010132D00
|
|
name = "Scribblenauts Unmasked - <?=$title?>"
|
|
version = 2
|
|
|
|
[TextureRedefine]
|
|
width = 1280
|
|
height = 720
|
|
tileModesExcluded = 0x001 # FMV
|
|
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
|
overwriteHeight = <?=round($scaleFactorY*720)?>
|
|
|
|
[TextureRedefine] # gamepad
|
|
width = 854
|
|
height = 480
|
|
#overwriteWidth = <?=round($scaleFactorX*1280)?>
|
|
#overwriteHeight = <?=round($scaleFactorY*720)?>
|