bugClanLib - Bugs: bug #7356, Not restoring the display mode...

 
 

bug #7356: Not restoring the display mode after fullscreen mode.

Submitted by:  None
Submitted on:  Wed 21 Jan 2004 06:22:36 AM UTC  
 
Category: clanDisplaySeverity: 3 - Normal
Item Group: API problemStatus: None
Privacy: PublicAssigned to: None
Open/Closed: OpenRelease: 0.7.7
Operating System: WindowsPlanned Release: None

Add a New Comment(Rich Markup)
   

You are not logged in

Please log in, so followups can be emailed to you.

 

Wed 21 Jan 2004 06:22:36 AM UTC, original submission:

Not restoring the display mode after fullscreen mode.
In function void CL_DisplayWindow_Win32::set_windowed() not call function void CL_DisplayWindow_Win32::restore_videomode();

Fixed in source display_window_win32.cpp line 188.
Before edit...

void CL_DisplayWindow_Win32::set_windowed()
{
if (!fullscreen) return;

CL_DisplayWindowDescription desc;
desc.set_title(title);
desc.set_allow_resize(allow_resize);
desc.set_layered(layered);
create_window(desc);
}

After edit...
void CL_DisplayWindow_Win32::set_windowed()
{
if (!fullscreen) return;

CL_DisplayWindowDescription desc;
desc.set_title(title);
desc.set_allow_resize(allow_resize);
desc.set_layered(layered);
create_window(desc);
restore_videomode();
}

Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach File(s):
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

Do you think this task is very important?
If so, you can click here to add your encouragement to it.
This task has 0 encouragements so far.

Only logged-in users can vote.

 

Please enter the title of George Orwell's famous dystopian book (it's a date):

 

 

No Changes Have Been Made to This Item

Back to the top


Powered by Savane 3.1-cleanup1