Created
June 26, 2022 02:27
-
-
Save MobCat/0402ed336475209e33dcd42f34ff993a to your computer and use it in GitHub Desktop.
Broken demo of screen capture for DTP-T1000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ::@echo off | |
| :: User veribals | |
| :: IP address of devkit | |
| set devkitIP=192.168.1.95 | |
| set gamestr=pspdev | |
| :: System veribals, don't mess with it | |
| set datestr=%DATE:~10,4%%DATE:~7,2%%DATE:~4,2%-%TIME:~0,2%%TIME:~3,2%%TIME:~6,2% | |
| :: cd to direct debug app thingy and connect to our devkit | |
| cd C:\usr\local\PSP\devkit\bin.windows | |
| dstdb -d %devkitIP%:8510 | |
| :: sadly this isent working right now, type it. | |
| vcp save "c:\pspdev.bmp" | |
| quit | |
| pause | |
| :: the "fixing it in post" part | |
| cd C:\ | |
| ren pspdev.bmp "%gamestr%-%datestr%.bmp" | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment