Skip to content

Commit

Permalink
Update v3.00
Browse files Browse the repository at this point in the history
  • Loading branch information
ONElua authored Aug 25, 2017
1 parent d30de99 commit 3cb6930
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
Binary file modified eboot.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion script.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- Gdljjrod (https://twitter.com/gdljjrod).
- DevDavisNunez (https://twitter.com/DevDavisNunez).
]]
--os.message(files.device("uma0:seplugins"))

game.close()
buttons.homepopup(0) -- Lock exit to livearea! :)
color.loadpalette() -- Load palette of colors!
Expand Down
19 changes: 8 additions & 11 deletions system/bubbles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ function bubbles.install(src, dst, driver)
files.mkdir(appmeta.."/livearea/contents/")
--os.exit()
end
--buttons.homepopup(0)
--buttons.read()
buttons.homepopup(0)
buttons.read()

files.copy(work_dir.."ICON0.PNG", appmeta)
if files.exists(appmeta.."/ICON0.PNG") then
Expand Down Expand Up @@ -194,7 +194,6 @@ function bubbles.install(src, dst, driver)
buttons.read()
local vbuff = screen.toimage()
while true do
--buttons.homepopup(0)
buttons.read()
if vbuff then vbuff:blit(0,0) elseif back then back:blit(0,0) end

Expand All @@ -212,18 +211,17 @@ function bubbles.install(src, dst, driver)
if buttons.released.cross or buttons.released.circle or buttons.released.triangle then break end
end--while

if buttons.released.cross then -- Press X
if buttons.released.cross then -- Press X
fp:write("INFERNO".."\n")
elseif buttons.released.triangle then -- Press △
elseif buttons.released.triangle then -- Press △
fp:write("MARCH33".."\n")
elseif buttons.released.circle then -- Press O
elseif buttons.released.circle then -- Press O
fp:write("NP9660".."\n")
end
buttons.read()--fflush

--Boot mode bin
while true do
--buttons.homepopup(0)
buttons.read()
if vbuff then vbuff:blit(0,0) elseif back then back:blit(0,0) end

Expand All @@ -242,11 +240,11 @@ function bubbles.install(src, dst, driver)
end

-- Press X/△
if buttons.released.cross then -- Press X
if buttons.released.cross then -- Press X
fp:write("EBOOT.BIN".."\n")
elseif buttons.released.triangle then -- Press △
elseif buttons.released.triangle then -- Press △
fp:write("EBOOT.OLD".."\n")
elseif buttons.released.circle then -- Press O
elseif buttons.released.circle then -- Press O
fp:write("BOOT.BIN".."\n")
end

Expand Down Expand Up @@ -311,7 +309,6 @@ function bubbles.selection(obj,driver)
local scroll = newScroll(bubbles.list, 16)
local xscr = 830 - 144
while true do
--buttons.homepopup(0)
buttons.read()
if vbuff then vbuff:blit(0,0) end

Expand Down
1 change: 0 additions & 1 deletion system/scan.lua
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@ function scan.deledit_gameids()

buttons.interval(10,10)
while true do
--buttons.homepopup(0)
buttons.read()
if back then back:blit(0,0) end
draw.fillrect(0,0,960,30, 0x64545353) --UP
Expand Down

0 comments on commit 3cb6930

Please sign in to comment.