diff --git a/Docs/Assets/Screenshot.png b/Docs/Assets/Screenshot.png index f459843..f101aea 100644 Binary files a/Docs/Assets/Screenshot.png and b/Docs/Assets/Screenshot.png differ diff --git a/Sources/Snake/SnakeGame.swift b/Sources/Snake/SnakeGame.swift index 81da6ba..7a38148 100644 --- a/Sources/Snake/SnakeGame.swift +++ b/Sources/Snake/SnakeGame.swift @@ -175,7 +175,7 @@ class Game { // textColor // ) - let text = "[ Swiftly Snake ]" + let text = "[ Pixel Snake ]" let textFontSize: Int32 = 40 let drawPosition = Point2D( x: (640 - Raylib.measureText(text, textFontSize)) / 2, @@ -187,7 +187,7 @@ class Game { let descriptionFontSize: Int32 = 10 let descriptionDrawPosition = Point2D( x: (640 - Raylib.measureText(descripion, descriptionFontSize)) / 2, - y: 360 / 2 + (360 / 2 - descriptionFontSize) / 2 + y: 360 / 2 + (360 / 4 - descriptionFontSize) / 2 ) Raylib.drawText( descripion, descriptionDrawPosition.x, descriptionDrawPosition.y, descriptionFontSize,