Skip to content

Commit

Permalink
patch: Legend of Zelda v4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
francisdb committed Oct 16, 2024
1 parent a7c7992 commit ea3c829
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Legend of Zelda v4.3/Legend of Zelda v4.3.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -404,10 +404,11 @@ End Sub
'*************

Sub table1_Paused
If Isobject(Controller)Then Controller.Pause = True
End Sub

Sub table1_unPaused
If Isobject(Controller)Then Controller.Pause = True
If Isobject(Controller)Then Controller.Pause = False
End Sub

Sub table1_Exit
Expand Down
12 changes: 8 additions & 4 deletions Legend of Zelda v4.3/Legend of Zelda v4.3.vbs.patch
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
--- "Legend of Zelda v4.3.vbs.original" 2024-10-16 11:26:51.212816080 +0200
+++ "Legend of Zelda v4.3.vbs" 2024-10-16 11:26:35.266360779 +0200
@@ -407,7 +407,7 @@
--- "Legend of Zelda v4.3.vbs.original" 2024-10-16 11:35:57.513483247 +0200
+++ "Legend of Zelda v4.3.vbs" 2024-10-16 11:33:33.760350713 +0200
@@ -404,10 +404,11 @@
'*************

Sub table1_Paused
+ If Isobject(Controller)Then Controller.Pause = True
End Sub

Sub table1_unPaused
- If Isobject(Controller)Then Controller.Pause
+ If Isobject(Controller)Then Controller.Pause = True
+ If Isobject(Controller)Then Controller.Pause = False
End Sub

Sub table1_Exit

0 comments on commit ea3c829

Please sign in to comment.