C++ graphics modes
-
Is it possibl to initiate a graphics mode in a standard C++ console application? If it is and you have before, i would praise you if you took a moment to copy\paste the source in a response to this message. I have Visual C++ 6.0 Standard Edition.
No, you can't initate graphics mode in a console application (which is what 32 bit VC creates). You can do so in a DOS application, but you would need a DOS targeting compiler. You'll need to use standard Windows GDI, WinG, or DirectX.
-
Is it possibl to initiate a graphics mode in a standard C++ console application? If it is and you have before, i would praise you if you took a moment to copy\paste the source in a response to this message. I have Visual C++ 6.0 Standard Edition.
Its been a while since I've used it, but I remember Allegro was a pretty good graphics library.