mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
フォントテーブル作成スクリプトを修正。フォント圧縮時に TWLSDK_ROOT/tools/bin/compBLZ.exe を使用するようにパス修正。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@1920 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
7d8e79ab39
commit
4320a4c6dd
@ -39,7 +39,7 @@ my $headerFile = "header.bin";
|
|||||||
my $digestFile = "sha1.bin";
|
my $digestFile = "sha1.bin";
|
||||||
my $signFile = "sign.bin";
|
my $signFile = "sign.bin";
|
||||||
my $tempFile = "temp.bin";
|
my $tempFile = "temp.bin";
|
||||||
my $compprog = "./compBLZ_modified/bin/compBLZ.exe"; # 圧縮プログラム
|
my $compprog = "compBLZ.exe"; # 圧縮プログラム
|
||||||
my $compoption = "-e \"\"";
|
my $compoption = "-e \"\"";
|
||||||
#my $compprog = "./ntrcomp/gcc/ntrcomp.exe";
|
#my $compprog = "./ntrcomp/gcc/ntrcomp.exe";
|
||||||
#my $compoption = "-h8 -A32 -s";
|
#my $compoption = "-h8 -A32 -s";
|
||||||
@ -54,12 +54,13 @@ sub deleteTemp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# 環境変数からSDKのルートをサーチして(ntrcompの場所特定に必要)
|
# 環境変数からSDKのルートをサーチして(ntrcompの場所特定に必要)
|
||||||
#foreach ( sort keys ( %ENV ) ){
|
foreach ( sort keys ( %ENV ) ){
|
||||||
# if ($_ =~ m/TWLSDK_ROOT/s) {
|
if ($_ =~ m/TWLSDK_ROOT/s) {
|
||||||
# $SDKROOT = $ENV{$_};
|
$SDKROOT = $ENV{$_};
|
||||||
# }
|
}
|
||||||
#}
|
}
|
||||||
#printf "TWLSDK_ROOT is ${SDKROOT}\n";
|
printf "TWLSDK_ROOT is ${SDKROOT}\n";
|
||||||
|
$compprog = "${SDKROOT}/tools/bin/" . $compprog;
|
||||||
|
|
||||||
my $signSize = 0x80;
|
my $signSize = 0x80;
|
||||||
my $headerSize = 0x20;
|
my $headerSize = 0x20;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user