Skip to content

Commit

Permalink
Fixed #44 - Roku Crash reports: Function padleft is causing hundreds …
Browse files Browse the repository at this point in the history
…of crashes
  • Loading branch information
lvcabral committed Aug 23, 2017
1 parent a2dea4e commit 3476d00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@

.buildpath

.project

.settings
.vscode

out

Expand Down
2 changes: 1 addition & 1 deletion manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
title=Lode Runner
major_version=0
minor_version=15
build_version=403
build_version=405
mm_icon_focus_fhd=pkg:/images/icon_focus_hd.png
mm_icon_focus_hd=pkg:/images/icon_focus_hd.png
mm_icon_focus_sd=pkg:/images/icon_side_hd.png
Expand Down
2 changes: 1 addition & 1 deletion source/gameUtil.brs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ Function padLeft(text as string, size as integer) as string
if Len(text) > size
return text.Left(size)
else if Len(text) < size
text += String(size - Len(text), 32)
text += StringI(size - Len(text), 32)
end if
return text
End Function
Expand Down

0 comments on commit 3476d00

Please sign in to comment.