Search found 14 matches

by Kazo
Wed Dec 19, 2012 5:13 am
Forum: DS/DSi Development
Topic: BG flicker problem
Replies: 4
Views: 10619

Re: BG flicker problem

After doing that and lower the background to 512x256 from 512x512 the problem is no longer an issue.

Thanks!
by Kazo
Tue Dec 18, 2012 8:57 pm
Forum: DS/DSi Development
Topic: BG flicker problem
Replies: 4
Views: 10619

Re: BG flicker problem

how would I go about doing that?
by Kazo
Tue Dec 18, 2012 7:37 pm
Forum: DS/DSi Development
Topic: BG flicker problem
Replies: 4
Views: 10619

BG flicker problem

I need to know how to load a new background and move the scroll location in one frame, First I tried loading the new background and resetting the scroll, but then I get this flicker on the screen from the background being loaded and shown at the old scroll location before it was updated. Then I trie...
by Kazo
Wed Aug 08, 2012 11:55 pm
Forum: DS/DSi Development
Topic: How do I run a nds file from my program.
Replies: 1
Views: 4783

How do I run a nds file from my program.

I want my program to return to the menu after it runs, but my cart does not support returning to the menu with exit(0);, but they provide a nds file to return to menu you have to run in the program. I tried to look at the hbmenu source but i can't seem to get the source to download.
by Kazo
Mon Apr 16, 2012 11:55 pm
Forum: devkitARM
Topic: time(NULL); failing to update on DeSmuME and 3DS in DS mode.
Replies: 1
Views: 4455

time(NULL); failing to update on DeSmuME and 3DS in DS mode.

At first, I thought it was a problem with DeSmuME, but then when I tested it on my 3DS in DS mode it was not working either. it seems to work fine with No$GBA and on a DS Lite. When on DeSmuME or 3DS it seems to get set with the current time at the time it boots but it never is updated as the progra...
by Kazo
Tue Sep 06, 2011 3:35 pm
Forum: DS/DSi Development
Topic: Problem with a string.
Replies: 3
Views: 5164

Re: Problem with a string.

ok thanks
by Kazo
Sun Sep 04, 2011 3:26 pm
Forum: DS/DSi Development
Topic: Problem with a string.
Replies: 3
Views: 5164

Problem with a string.

For some reason, my string does not seem to get set correctly. I am using fincs' SSEQ player and modding it a bit so that users can play the SSEQs that are on NDS files. I made a shortcut type file that has all the data necessary to quickly make the SSEQ list and have all the offsets for the SSEQs, ...
by Kazo
Tue Aug 30, 2011 2:57 am
Forum: DS/DSi Development
Topic: my string array is not working correctly with my filebrowser
Replies: 7
Views: 8033

Re: my string array is not working correctly with my filebro

sorry, I am used to C#

I changed it to strcpy(DirList[fileCount], pent->d_name);

and now i get this.

Image
by Kazo
Mon Aug 29, 2011 8:38 pm
Forum: DS/DSi Development
Topic: my string array is not working correctly with my filebrowser
Replies: 7
Views: 8033

my string array is not working correctly with my filebrowser

I am trying to copy the string of pent->d_name to an array of strings. here is the code. void ReadDir() { fileCount = 0; DIR *pdir; struct dirent *pent; struct stat statbuf; pdir=opendir(currentDir); if (pdir) { while ((pent=readdir(pdir))!=NULL) { stat(pent->d_name,&statbuf); if(S_ISDIR(statbuf...