mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-12-23 16:31:50 +01:00
Add Taiko no Tatsujin
This commit is contained in:
parent
80151011d1
commit
da454d7bfc
@ -14,7 +14,6 @@ version = 2
|
|||||||
[TextureRedefine] # tv
|
[TextureRedefine] # tv
|
||||||
width = 1920
|
width = 1920
|
||||||
height = 1080
|
height = 1080
|
||||||
tileModesExcluded = 0x1
|
|
||||||
overwriteWidth = <?=round($scaleFactorX*1920)?>
|
overwriteWidth = <?=round($scaleFactorX*1920)?>
|
||||||
overwriteHeight = <?=round($scaleFactorY*1080)?>
|
overwriteHeight = <?=round($scaleFactorY*1080)?>
|
||||||
|
|
||||||
|
38
Source/TaikoNoTatsujin/rules.txt
Normal file
38
Source/TaikoNoTatsujin/rules.txt
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?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 = 00050000101d3000
|
||||||
|
name = "Taiko no Tatsujin: Atsumete Tomodachi Daisakusen! - <?=$title?>"
|
||||||
|
version = 2
|
||||||
|
|
||||||
|
[TextureRedefine] # tv
|
||||||
|
width = 1280
|
||||||
|
height = 720
|
||||||
|
#formatsExcluded = 0x1a # disabled because shares same format as display texture itself
|
||||||
|
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||||
|
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||||
|
|
||||||
|
[TextureRedefine] # ???
|
||||||
|
width = 600
|
||||||
|
height = 600
|
||||||
|
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||||
|
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||||
|
|
||||||
|
[TextureRedefine] # ???
|
||||||
|
width = 400
|
||||||
|
height = 256
|
||||||
|
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||||
|
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||||
|
|
||||||
|
[TextureRedefine] # gamepad
|
||||||
|
width = 854
|
||||||
|
height = 480
|
||||||
|
#overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||||
|
#overwriteHeight = <?=round($scaleFactorY*720)?>
|
1
build.sh
1
build.sh
@ -154,6 +154,7 @@ std_respack "StarFoxZero" "${res16by9[@]/$just720p}"
|
|||||||
std_respack "SuperMario3DWorld" "${res16by9[@]/$just720p}" "${res21by9[@]}"
|
std_respack "SuperMario3DWorld" "${res16by9[@]/$just720p}" "${res21by9[@]}"
|
||||||
std_respack "SuperSmashBros" "${res16by9[@]/$just1080p}"
|
std_respack "SuperSmashBros" "${res16by9[@]/$just1080p}"
|
||||||
std_respack "TNTRacers" "${res16by9[@]/$just1080p}"
|
std_respack "TNTRacers" "${res16by9[@]/$just1080p}"
|
||||||
|
std_respack "TaikoNoTatsujin" "${res16by9[@]/$just720p}"
|
||||||
std_respack "Tekken" "${res16by9[@]/$just720p}"
|
std_respack "Tekken" "${res16by9[@]/$just720p}"
|
||||||
std_respack "Tengami" "${res16by9[@]/$just720p}"
|
std_respack "Tengami" "${res16by9[@]/$just720p}"
|
||||||
std_respack "TropicalFreeze" "${res16by9[@]/$just720p}" "${res21by9[@]}"
|
std_respack "TropicalFreeze" "${res16by9[@]/$just720p}" "${res21by9[@]}"
|
||||||
|
Loading…
Reference in New Issue
Block a user