Skip to content

Commit ed3b0d7

Browse files
committed
Hotfix 3
1 parent 5d025e7 commit ed3b0d7

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

Files/Scripts/Common.psm1

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -683,6 +683,15 @@ function IsChecked([object]$Elem=$null, [byte]$Lang=0, [switch]$Not) {
683683

684684

685685

686+
#==============================================================================================================================================================================================
687+
function GetCheckedValue([object]$Elem=$null) {
688+
689+
if ($Elem.Checked) { return 1 } else { return 0 }
690+
691+
}
692+
693+
694+
686695
#==============================================================================================================================================================================================
687696
function IsRevert([object]$Elem=$null, [int16]$Index=1, [string]$Text="", [string]$Compare="", [string]$Item="", [byte]$Lang=0) {
688697

@@ -1401,6 +1410,7 @@ Export-ModuleMember -Function PatchPath_Finish
14011410

14021411
Export-ModuleMember -Function IsDefault
14031412
Export-ModuleMember -Function IsChecked
1413+
Export-ModuleMember -Function GetCheckedValue
14041414
Export-ModuleMember -Function IsRevert
14051415
Export-ModuleMember -Function IsItem
14061416
Export-ModuleMember -Function IsText

Files/Scripts/Scene Editor.psm1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2651,7 +2651,7 @@ function ShiftSceneHeaderData([int16]$Shift=0x10) {
26512651
}
26522652

26532653
if ($SceneEditor.GUI) { ShiftSceneMapData -Shift $Shift } else { $SceneEditor.SceneMapShift += $Shift }
2654-
2654+
ShiftActors -Shift $Shift
26552655

26562656
}
26572657

@@ -2704,7 +2704,6 @@ function ShiftSceneMapData([int16]$Shift=0x10) {
27042704

27052705
ShiftCutscenesTable -Shift $Shift
27062706
ShiftTexturesTable -Shift $Shift
2707-
ShiftActors -Shift $Shift
27082707
if ($Files.json.sceneEditor.parse -eq "oot") { ChangeBytes -File ($Paths.Temp + "\scene\scenes.tbl") -Offset (7 + 20 * (GetDecimal $SceneEditor.LoadedScene.id)) -Values $Shift -Add -Silent }
27092708

27102709
$SceneEditor.LoadedMap = $originalMap

Files/Scripts/Zelda 64.psm1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,6 @@ function MusicOptions([string]$Default="File Select") {
612612
Start-Sleep -m 25
613613
if (!$check) {
614614
$MainDialog.Activate()
615-
$OptionsDialog.Activate()
616615
$Check = $true
617616
}
618617
}

Files/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
22.0.11
22
2023-11-05
3-
2
3+
3

0 commit comments

Comments
 (0)