diff --git a/examples/graphics/printing/both-screen-text/source/main.c b/examples/graphics/printing/both-screen-text/source/main.c index 688b136..d2ddd95 100644 --- a/examples/graphics/printing/both-screen-text/source/main.c +++ b/examples/graphics/printing/both-screen-text/source/main.c @@ -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> diff --git a/examples/graphics/printing/colored-text/source/main.c b/examples/graphics/printing/colored-text/source/main.c index 3acaaf1..26afc15 100644 --- a/examples/graphics/printing/colored-text/source/main.c +++ b/examples/graphics/printing/colored-text/source/main.c @@ -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> diff --git a/examples/graphics/printing/hello-world/source/main.c b/examples/graphics/printing/hello-world/source/main.c index 260b017..04b4c29 100644 --- a/examples/graphics/printing/hello-world/source/main.c +++ b/examples/graphics/printing/hello-world/source/main.c @@ -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> diff --git a/examples/graphics/printing/multiple-windows-text/source/main.c b/examples/graphics/printing/multiple-windows-text/source/main.c index b18710b..bf238f9 100644 --- a/examples/graphics/printing/multiple-windows-text/source/main.c +++ b/examples/graphics/printing/multiple-windows-text/source/main.c @@ -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> diff --git a/examples/threads/event/source/main.c b/examples/threads/event/source/main.c index 1fcec86..cb2ba46 100644 --- a/examples/threads/event/source/main.c +++ b/examples/threads/event/source/main.c @@ -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())