Search found 2 matches

by Skye
Wed Jul 18, 2012 12:35 am
Forum: DS/DSi Development
Topic: Simultaneous button presses
Replies: 2
Views: 7062

Simultaneous button presses

This might be a trivial question but I can't seem to find the answer. I would like to move stuff diagonally, so I want to check for KEY_UP and KEY_RIGHT for example. What I do at the moment is the following:

while(1) loop, lastKey is just a global int
scanKeys();
if(keysDown())
lastKey ...
by Skye
Tue Jul 17, 2012 1:08 pm
Forum: DS/DSi Development
Topic: No .map and .pal files generated.
Replies: 0
Views: 8408

No .map and .pal files generated.

Hey all,

I just started out ND programming and was messing around with the NightFox library for graphics.

I am trying to convert a bmp file into .img, .map and .pal files so I can have them shown in the rom. However when I run the conversion, I only get a .img file.

The following code is used in ...