Okay, I want the application to run in FullScreenExclusive, but I DON'T want it running at 600x400.
I use dbSetWindowOff() to get FSEX going, then I use "GetSystemMetrics" to grab a better resolution for the system. I then immediately use dbSetDisplayMode using the metrics I got... but the resolution of the application doesn't change!!!
Here's the code:
int SW;
int SH;
// the main entry point for the application is this function
void DarkGDK ( void )
{
// Fullscreen Mode
dbSetWindowOff();
dbSyncOn();
// LOAD MAXIMUM RESOLUTION
SW=GetSystemMetrics(0);
SH=GetSystemMetrics(1);
dbSetDisplayMode(SW,SH,32);
Is there something wrong with the way I'm doing this?
Changing resolution while in FSEX mode isn't working!
The one and only,