Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
8b70b91c
Commit
8b70b91c
authored
Feb 26, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Feb 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Ignore depth mismatch when using a virtual desktop.
parent
74d26327
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
desktop.c
dlls/winex11.drv/desktop.c
+5
-1
No files found.
dlls/winex11.drv/desktop.c
View file @
8b70b91c
...
...
@@ -124,7 +124,11 @@ static LONG X11DRV_desktop_SetCurrentMode(int mode)
if
(
dwBpp
!=
dd_modes
[
mode
].
dwBPP
)
{
FIXME
(
"Cannot change screen BPP from %d to %d
\n
"
,
dwBpp
,
dd_modes
[
mode
].
dwBPP
);
return
DISP_CHANGE_BADMODE
;
/* Ignore the depth missmatch
*
* Some (older) applications require a specific bit depth, this will allow them
* to run. X11drv performs a color depth conversion if needed.
*/
}
TRACE
(
"Resizing Wine desktop window to %dx%d
\n
"
,
dd_modes
[
mode
].
dwWidth
,
dd_modes
[
mode
].
dwHeight
);
X11DRV_resize_desktop
(
dd_modes
[
mode
].
dwWidth
,
dd_modes
[
mode
].
dwHeight
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment