Differences From Artifact [9043414018]:
- File tests/TestsAppDelegate.m — part of check-in [e1762ab0af] at 2016-02-22 00:17:33 on branch trunk — tests: Add output for Nintendo 3DS (user: js, size: 9696) [annotate] [blame] [check-ins using]
To Artifact [a0e4ec5268]:
- File
tests/TestsAppDelegate.m
— part of check-in
[bd02f7426c]
at
2016-03-20 18:28:09
on branch trunk
— Nintendo 3DS: Call gfxExit() at exit
Also reduce the TOO_BIG constant in OFObjectTests, as apparently passing
sizes >= 2^31 to malloc() or realloc() breaks everything in weird ways
on the Nintendo 3DS. (user: js, size: 9715) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
#ifdef OF_NINTENDO_DS
consoleDemoInit();
#endif
#ifdef OF_NINTENDO_3DS
gfxInitDefault();
consoleInit(GFX_TOP, NULL);
#endif
#if defined(OF_WII) || defined(OF_PSP) || defined(OF_NINTENDO_DS) || \
defined(OF_NINTENDO_3DS)
@try {
return of_application_main(&argc, &argv,
| > > | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
#ifdef OF_NINTENDO_DS
consoleDemoInit();
#endif
#ifdef OF_NINTENDO_3DS
gfxInitDefault();
atexit(gfxExit);
consoleInit(GFX_TOP, NULL);
#endif
#if defined(OF_WII) || defined(OF_PSP) || defined(OF_NINTENDO_DS) || \
defined(OF_NINTENDO_3DS)
@try {
return of_application_main(&argc, &argv,
|
| ︙ | ︙ |