Skip to content

Commit

Permalink
4.1 zeta
Browse files Browse the repository at this point in the history
fixed screen roundness bug
  • Loading branch information
James A. Clark committed Dec 14, 2022
1 parent 305a25d commit 08bc702
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
Binary file added screenshots/main.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/nowplaying.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/SystemAssets/card-pressed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/img/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -406,12 +406,13 @@ function playdate.update()
elseif row == 4 then
showVersion = not showVersion
elseif row == 5 then
if screenRoundness >= 1 and screenRoundness ~= 8 then
if screenRoundness >= 1 and screenRoundness < 8 then
if screenRoundness == 1 or screenRoundness == 6 then
screenRoundness += 2
else
screenRoundness += 1
end
screenRoundness += 1
elseif screenRoundness == 8 then
elseif screenRoundness >= 8 then
screenRoundness = 1
end
elseif row == 6 then
Expand Down
4 changes: 2 additions & 2 deletions src/pdxinfo
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ name=musik
author=nanobot567
description=simple music player for playdate
bundleID=com.nano.musik
version=4.0
buildNumber=1047
version=4.1
buildNumber=1054
imagePath=SystemAssets

0 comments on commit 08bc702

Please sign in to comment.