mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-04 01:00:09 +00:00
fix indentation
This commit is contained in:
@@ -251,7 +251,7 @@ void pspDebugKbInit(char* str) {
|
||||
break;
|
||||
case 1: // Space
|
||||
if (strlen(str) < PSP_DEBUG_KB_MAXLEN) {
|
||||
char out[PSP_DEBUG_KB_MAXLEN] = {0};
|
||||
char out[PSP_DEBUG_KB_MAXLEN] = {0};
|
||||
snprintf(out, strlen(str), "%s ", str);
|
||||
pspDebugKbDrawString(out);
|
||||
}
|
||||
@@ -273,7 +273,7 @@ void pspDebugKbInit(char* str) {
|
||||
};
|
||||
} else {
|
||||
if (strlen(str) < PSP_DEBUG_KB_MAXLEN) {
|
||||
char out[PSP_DEBUG_KB_MAXLEN] = {0};
|
||||
char out[PSP_DEBUG_KB_MAXLEN] = {0};
|
||||
snprintf(out, strlen(str), "%s%c", str, charTable[row][col]);
|
||||
pspDebugKbDrawString(out);
|
||||
}
|
||||
|
Reference in New Issue
Block a user