|
Submit
Your Own Code
PSP Lua CodeBase : ScreenshotDescription:
This will take a screenshot when the specified button is pressed
during game play. They screenshot can be saved in .PNG OR .JPEG
-- EVILMANA.COM PSP LUA CODEBASE
-- www.evilmana.com/tutorials/codebase
-- In Game Screenshot
-- SUBMITTED BY: bronxbomber92
Controls.read()
if pad:select() then
Image:save( filename ) -- replace filename with the file name followed by
either
.PNG or .JPEG
end
Back to CodeBase
|