diff --git a/code/game/machinery/casino.dm b/code/game/machinery/casino.dm
index d2e837b094..263ec37595 100644
--- a/code/game/machinery/casino.dm
+++ b/code/game/machinery/casino.dm
@@ -31,7 +31,7 @@
visible_message("\ [user] spins the roulette and throws inside little ball.")
playsound(src.loc, 'sound/machines/roulette.ogg', 40, 1)
busy = 1
- icon_state = "roulette_wheel_spinning"
+ icon_state = "roulette_wheel_spinning"
var/result = rand(0,36)
var/color = "green"
add_fingerprint(user)
@@ -250,7 +250,7 @@
return
visible_message("\ [user] spins the wheel of fortune!")
busy = 1
- icon_state = "wheel_of_fortune_spinning"
+ icon_state = "wheel_of_fortune_spinning"
var/result = rand(1,interval)
add_fingerprint(user)
spawn(5 SECONDS)
@@ -838,4 +838,4 @@