elhobbs wrote:a few questions:
why do you want to optimize your code?
Is it running too slowly?
Is so, then where is it running too slowly?
Why do the think it is running slowly in this section?
Are you running out of memory?
If so, then how much free memory do you have, and how much more do you need?
running faster and using less memory are two separate and independent goals. However, doing one frequently sacrifices the other.
I am not really sure what you are asking in regards to variables and APIs. Are you asking if setting registers directly is better than using the libnds API for sprites? I suspect that you will find little difference (if any at all) in the performance either way. Since the libnds APIs are easier to understand - I would say they are better - until/unless you can prove why they are not.
Do not worry about this level of performance unless you need to.
Ah, yes, I know OAM APIs push all the changes in oamUpdate() which are saved by other oam functions, but registers apply changes immediately. Okay, I'll use the way that best fits in my code. By the way, It is better to replace some of calls of <video.h> functions to directly setting registers because the functions aren't complex and just cost some call stack

(It is not true if they're "inline")