-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* identify debug on banner * less chatty on ELF loading * tidy gitignore * better EE_SIO [skip actions] * also tell found app for auto apps * fix debug printf when searching AUTO apps * OpenTuna pack: dont bundle wLE with DS3/4 support * revert cf8f802 & add wait time before loading ELF wait time only applied if PS2BBL has debugging enabled fixes #21 * change artifact name for non master branch CI * Revert "change artifact name for non master branch CI" This reverts commit cd11562.
- Loading branch information
Showing
8 changed files
with
41 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include <stdarg.h> | ||
#include <stdio.h> | ||
#include <sio.h> | ||
void sio_printf(const char *fmt, ...) | ||
{ | ||
va_list args; | ||
va_start(args, fmt); | ||
char str[256]; | ||
vsnprintf(str, sizeof(str), fmt, args); | ||
sio_putsn(str); | ||
va_end(args); | ||
} |