Skip to content

Commit 8acb419

Browse files
RKBoss6Copilot
andauthored
Update apps/taglaunch/app.js
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 555999d commit 8acb419

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/taglaunch/app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ let showMainMenu = () => {
153153

154154
if(!noShortcuts)i-=1;
155155
if(i==-1){
156-
for(i=0;i<3;i++){
157-
const img = s.read(shortcuts[i]+".img");
156+
for(let j=0;j<3;j++){
157+
const img = s.read(shortcuts[j]+".img");
158158
if (img) {
159159
try {
160-
g.drawImage(img,8*scaleval+((g.getWidth()/3)*i), r.y+(8*scaleval), {scale: scaleval});}
160+
g.drawImage(img,8*scaleval+((g.getWidth()/3)*j), r.y+(8*scaleval), {scale: scaleval});}
161161
catch(e){}
162162
}
163163
}

0 commit comments

Comments
 (0)