def setup_player_image
@cell = 1
self.bitmap = Cache.space("player")
@cw = bitmap.width / 3
self.src_rect.set(@cell * @cw, 0, @cw, height)
self.ox = @cw / 2
self.oy = height
self.x = Graphics.width / 2
self.y = Graphics.height - height / 4 #I changed it with "(Graphics.height - 100) - height / 4"
end