Skip to content

Commit 48fd70d

Browse files
committed
Minor tweaks to v0.20
1 parent e6f7c6d commit 48fd70d

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

launch.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,8 @@ def launch_rom(info, override_emu=None):
672672
scored = get_award(name, st3, st2, st1)
673673
if scored > 0:
674674
_g.awarded = scored
675+
_g.ready = False
676+
_g.facing = 1
675677
_g.timer.reset()
676678
_g.timer_adjust = 0
677679
for i, coin in enumerate(range(0, scored, COIN_VALUES[-1])):
@@ -861,7 +863,7 @@ def animate_rolling_coins(out_of_time=False):
861863
_g.awarded = 0
862864
for i, coin in enumerate(_g.coins):
863865
co_x, co_y, co_rot, co_dir, co_ladder, co_type, co_awarded = coin
864-
if co_awarded and _g.timer.duration < 6:
866+
if co_awarded:
865867
place, place_text = get_prize_placing(co_awarded)
866868
write_text(f"YOU WON {place_text} PRIZE!", x=108, y=37, fg=WHITE, bg=MAGENTA, bubble=True)
867869
_g.awarded = co_awarded

rpi4/settings.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Front End Features
2-
FREE_PLAY = 1
3-
UNLOCK_MODE = 0
2+
FREE_PLAY = 0
3+
UNLOCK_MODE = 1
44
BASIC_MODE = 0
55
INACTIVE_TIME = 20
66
SHOW_SPLASHSCREEN = 1

rpi4/w_enter.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Use this line in your settings.txt to enable it i.e.
55
# EMU_ENTER = <ROOT>/w_enter.sh
66

7-
for i in {1..10}
7+
for i in {1..20}
88
do
99
# Keep focus on DKAFE until MAME starts
1010
wmctrl -Fa DKAFE

0 commit comments

Comments
 (0)