You are indeed not required to do that, but it is quite the limited application if you don't. I strongly urge you to find an application that needs the display, given that it is the primary output device. As for the delay, yes there should be at least one function for that.by henke37 - Coding
If you ask me, Y is up, X is to the right and Z is forward. Anything else is stupid.by henke37 - Coding
What algorithms does it use? How does it detect buffer overflows? And how are you expecting us to believe that it also does underflow detection?by henke37 - Coding
I do not like the idea of decoding all the audio before playback, you should reachecture the code to do on demand decoding, to keep the ram usage low, after all, the ram is limited and audio can be quite the memory user, especially decompressed. You will just not fit more than a few tracks in the Wii ram, and that has to compete with things like graphics (that consumes even more memory) and the gby henke37 - Coding
Well, tough luck. There simply isn't one. There is a mixing library, ports of different decoders, ports of said decoders that have been hacked to use previously mentioned mixing library and code to run the decoders alone. But nothing that is just one library. It is something that has bugged me for years (no kidding). If you make a library, do tell me. It isn't that hard to work with audby henke37 - Coding
Welcome to production for regulars TVs. Your lesson for today: action safe areas.by henke37 - Coding
Quotebarrelroll5:( Nobody will awnser me... Dude, you waited 3 minutes.by henke37 - Coding
There is just one slight problem with your claim, there is no http 2.0 servers out. And no client either. I don't even think they have written the RFC for it. And no sane http server will upgrade the connection without the client requesting it. Or in short, I think that you don't know what you are talking about.by henke37 - Coding
We do have a runtime that does take care of the messier parts, like using memory mapped registers and so on.by henke37 - Coding
I don't see why not.by henke37 - Coding
Null is zero in c++ per the ISO standard.by henke37 - Coding
There is no mention of a compiler in the output, this is a linker error.by henke37 - Coding
Yes, you can expect trouble if you use a different class definition like that.by henke37 - Coding
When using sdl, it hijacks the role as main, your main is silently renamed to something else.by henke37 - Coding
Why is that even needed? Anyway, if you got the source code, just build the library file yourself.by henke37 - Coding
Yeah, but you should use something that is using termcap to make the application portable. Not to mention a lot easier to code. It's much easier to work with an api that takes care of these details for you.by henke37 - Coding
Sure, after all, it's only a matter of linking with the right code. The code that runs the crash dump is part of the runtime.by henke37 - Coding
I don't think anyone have focused on this area, but I know one fact: it's not usb 2.0, so you will have to do with lower speeds. Is this an issue? I don't know.by henke37 - Coding
That's not a compiler error. It's a linker error. The compiler has already gone home, it's the linker that has problems. The linker blames the build setup manager (his name is Make) for not giving him the right linking list. And poor Make have no idea what's wrong, because all he did was to follow his holey makefile.by henke37 - Coding
You need to link with the library that handles the profiling, duh.by henke37 - Coding
You can emulate anything with anything. But you can't emulate anything with anything in realtime.by henke37 - Offtopic
If you actually knew the windows api, you would know that it's a little more complex than that.by henke37 - Coding
But that wouldn't do in this case, since we don't have the windows windowingsystem on the wii.by henke37 - Coding
The simple answer is no. The complex answer is, not unless you count running a full pc emulator.by henke37 - Coding
QuoteSwizlerokay thank u also how do i start programming the wii I recommend learning how to code on an easier platform. Then when you think that you program, you start over and this time actually pay attention and doesn't just copy paste stuff. Once that is done, you can try programing for the Wii.by henke37 - Coding
You might want to read the manual for the linker. You do know what the linker does, right? I am going to pretend that you do. The flag that you want to look up is L, case matters.by henke37 - Coding
The technically exact answer is wherever you want to, as long you make sure to tell the linker and compiler where to look for the files.by henke37 - Coding