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

 
 

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

Submitter:  None
Submitted:  Wed 21 Jan 2004 06:22:36 AM UTC
   
 
Category:  clanDisplay Severity:  3 - Normal
Item Group:  API problem Status:  None
Privacy:  Public Assigned to:  None
Open/Closed:  Open Release:  0.7.7
Operating System:  Windows Planned Release:  None
* Mandatory Fields

Add a New Comment Rich Markup
   

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 Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

Only logged-in users can vote.

 

No changes have been made to this item

Back to the top

Powered by Savane 3.13-02a9.
Corresponding source code