Search found 2 matches

by wojsza
Mon Mar 21, 2011 11:08 am
Forum: DS/DSi Development
Topic: Listing files in direcotry
Replies: 1
Views: 3323

Listing files in direcotry

Greetings I have a question for my first nds project Id like to create a simple file manager reading about it a lot and even started some coding but I have a problem with this:


DIR *pdir = NULL;
pdir = opendir(".");
struct dirent *pent = NULL;
if (pdir == NULL)
{
printf("opendir() failed ...
by wojsza
Fri Nov 26, 2010 11:17 am
Forum: DS/DSi Development
Topic: Beginners question about background and text
Replies: 2
Views: 3967

Beginners question about background and text

Greet

I've got a question about some background issues, as my first step in developing nds apps I have create a code to colour both of nds screen in particular colour using this code:


#include <nds.h>
#include <stdio.h>

int main(void)
{
videoSetMode(MODE_5_2D | DISPLAY_BG3_ACTIVE ...