Merge branch 'master' into great-refactor

This commit is contained in:
fincs 2015-12-07 11:43:44 +01:00
commit 1c18b0bffe
5 changed files with 1 additions and 34 deletions

View File

@ -2,14 +2,6 @@
Both Screen Text example made by Aurelio Mannara for ctrulib
This code was modified for the last time on: 12/12/2014 23:20 UTC+1
This wouldn't be possible without the amazing work done by:
-Smealum
-fincs
-WinterMute
-yellows8
-plutoo
-mtheall
-Many others who worked on 3DS and I'm surely forgetting about
*/
#include <3ds.h>

View File

@ -2,14 +2,6 @@
Colored Text example made by Aurelio Mannara for ctrulib
This code was modified for the last time on: 12/12/2014 23:00 UTC+1
This wouldn't be possible without the amazing work done by:
-Smealum
-fincs
-WinterMute
-yellows8
-plutoo
-mtheall
-Many others who worked on 3DS and I'm surely forgetting about
*/
#include <3ds.h>

View File

@ -1,15 +1,6 @@
/*
Hello World example made by Aurelio Mannara for ctrulib
This code was modified for the last time on: 12/12/2014 21:00 UTC+1
This wouldn't be possible without the amazing work done by:
-Smealum
-fincs
-WinterMute
-yellows8
-plutoo
-mtheall
-Many others who worked on 3DS and I'm surely forgetting about
*/
#include <3ds.h>

View File

@ -2,14 +2,6 @@
Multiple Windows Text example made by Aurelio Mannara for ctrulib
This code was modified for the last time on: 12/12/2014 23:50 UTC+1
This wouldn't be possible without the amazing work done by:
-Smealum
-fincs
-WinterMute
-yellows8
-plutoo
-mtheall
-Many others who worked on 3DS and I'm surely forgetting about
*/
#include <3ds.h>

View File

@ -38,7 +38,7 @@ int main(int argc, char** argv) {
u32 *threadStack = memalign(32, STACKSIZE);
Result ret = svcCreateThread(&threadHandle, threadMain, 0, &threadStack[STACKSIZE/4], 0x3f, 0);
printf("thread create returned %x\n", ret);
printf("thread create returned %lx\n", ret);
// Main loop
while (aptMainLoop())