Differences From Artifact [1a3475c054]:
- File
tests/TestsAppDelegate.m
— part of check-in
[2a27cf3000]
at
2016-01-03 00:41:26
on branch trunk
— Update copyright
While at it, also update the mail address. (user: js, size: 8830) [annotate] [blame] [check-ins using]
To Artifact [fb3c8c5bbc]:
- File tests/TestsAppDelegate.m — part of check-in [e0b9167693] at 2016-02-21 15:37:42 on branch trunk — Make use of C99-style for loops (user: js, size: 8835) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
178 179 180 181 182 183 184 |
}
@implementation TestsAppDelegate
- (void)outputString: (OFString*)str
inColor: (int)color
{
#if defined(OF_PSP)
| | | | 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
}
@implementation TestsAppDelegate
- (void)outputString: (OFString*)str
inColor: (int)color
{
#if defined(OF_PSP)
char space = ' ';
int y = pspDebugScreenGetY();
pspDebugScreenSetXY(0, y);
for (uint8_t i = 0; i < 68; i++)
pspDebugScreenPrintData(&space, 1);
switch (color) {
case NO_COLOR:
pspDebugScreenSetTextColor(0xFFFFFF);
break;
case RED:
|
| ︙ | ︙ |