Skip to content

Commit

Permalink
patch: Sonic The Hedgehog (Brendan Bailey 2005) VPX MOD 1.33 (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
francisdb authored Sep 5, 2024
1 parent 75490cc commit abe9394
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,16 @@ Dim VR_Obj
D1.visible = 0
D2.visible = 0
DMD.visible = 0
PinCab_Backbox.visible = 0
Primary_backglass01.visible = 0

for each VR_Obj in vr_room1 : VR_Obj.visible = 0 : next
for each VR_Obj in vr_room2 : VR_Obj.visible = 0 : next

if RenderingMode = 2 Then
DMD.visible = 1
PinCab_Backbox.visible = 1
Primary_backglass01.visible = 1
If VR_ROOM = 1 then for each VR_Obj in vr_room1 : VR_Obj.visible = 1 : next
If VR_ROOM = 2 then for each VR_Obj in vr_room2 : VR_Obj.visible = 1 : next
Else if Table1.ShowDT Then
Expand Down Expand Up @@ -972,7 +977,7 @@ Sub AddScore(points)
'player3reel.text = ""
if ballsremaining(currentplayer) = 3 then
D2.text = "ball 1"
DisplayB2SText score(currentplayer) & " " & " BALL 1 "
DisplayB2SText score(currentplayer) &" " & " BALL 1 "
end if
if ballsremaining(currentplayer) = 2 then
D2.text = "ball 2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,16 @@ Dim VR_Obj
D1.visible = 0
D2.visible = 0
DMD.visible = 0
PinCab_Backbox.visible = 0
Primary_backglass01.visible = 0

for each VR_Obj in vr_room1 : VR_Obj.visible = 0 : next
for each VR_Obj in vr_room2 : VR_Obj.visible = 0 : next

if RenderingMode = 2 Then
DMD.visible = 1
PinCab_Backbox.visible = 1
Primary_backglass01.visible = 1
If VR_ROOM = 1 then for each VR_Obj in vr_room1 : VR_Obj.visible = 1 : next
If VR_ROOM = 2 then for each VR_Obj in vr_room2 : VR_Obj.visible = 1 : next
Else if Table1.ShowDT Then
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- "Sonic The Hedgehog (Brendan Bailey 2005) VPX MOD 1.30.vbs.original" 2024-04-16 11:36:15.342037978 +0200
+++ "Sonic The Hedgehog (Brendan Bailey 2005) VPX MOD 1.30.vbs" 2024-04-16 11:33:35.470293961 +0200
@@ -151,10 +151,10 @@
--- "Sonic The Hedgehog (Brendan Bailey 2005) VPX MOD 1.33.vbs.original" 2024-09-02 15:18:19.069074828 +0200
+++ "Sonic The Hedgehog (Brendan Bailey 2005) VPX MOD 1.33.vbs" 2024-09-02 15:15:48.025991490 +0200
@@ -156,10 +156,10 @@
Sub LoadUltraDMD
If turnonultradmd = 0 then exit sub

Expand All @@ -15,12 +15,12 @@

Set UltraDMD = CreateObject("UltraDMD.DMDObject")
If UltraDMD is Nothing Then
@@ -972,15 +972,15 @@
@@ -977,15 +977,15 @@
'player3reel.text = ""
if ballsremaining(currentplayer) = 3 then
D2.text = "ball 1"
- DisplayB2SText (score(currentplayer)) &" " & " BALL 1 "
+ DisplayB2SText score(currentplayer) & " " & " BALL 1 "
+ DisplayB2SText score(currentplayer) &" " & " BALL 1 "
end if
if ballsremaining(currentplayer) = 2 then
D2.text = "ball 2"
Expand Down

0 comments on commit abe9394

Please sign in to comment.