Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
91547cbf
Commit
91547cbf
authored
Jul 24, 1999
by
Huw D M Davies
Committed by
Alexandre Julliard
Jul 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix stupid `rubbish at end of %%Title' bug.
Don't complain about palette relative RGBs. If output param to CreateDC is NULL default to `LPT1:' - Hack.
parent
5d68f79a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
color.c
graphics/psdrv/color.c
+1
-1
init.c
graphics/psdrv/init.c
+4
-2
ps.c
graphics/psdrv/ps.c
+1
-1
No files found.
graphics/psdrv/color.c
View file @
91547cbf
...
...
@@ -80,7 +80,7 @@ void PSDRV_CreateColor( PSDRV_PDEVICE *physDev, PSCOLOR *pscolor,
int
ctype
=
wincolor
>>
24
;
float
r
,
g
,
b
;
if
(
ctype
!=
0
)
if
(
ctype
!=
0
&&
ctype
!=
2
)
FIXME
(
"Colour is %08lx
\n
"
,
wincolor
);
r
=
(
wincolor
&
0xff
)
/
256
.
0
;
...
...
graphics/psdrv/init.c
View file @
91547cbf
...
...
@@ -13,6 +13,7 @@
#include "winreg.h"
#include "winspool.h"
#include "winerror.h"
#include "options.h"
DEFAULT_DEBUG_CHANNEL
(
psdrv
)
...
...
@@ -297,8 +298,9 @@ static BOOL PSDRV_CreateDC( DC *dc, LPCSTR driver, LPCSTR device,
dc
->
w
.
devCaps
->
vertRes
);
dc
->
w
.
hFont
=
PSDRV_DefaultFont
;
physDev
->
job
.
output
=
output
?
HEAP_strdupA
(
PSDRV_Heap
,
0
,
output
)
:
NULL
;
physDev
->
job
.
output
=
output
?
HEAP_strdupA
(
PSDRV_Heap
,
0
,
output
)
:
HEAP_strdupA
(
PSDRV_Heap
,
0
,
"LPT1:"
);
/* HACK */
physDev
->
job
.
hJob
=
0
;
return
TRUE
;
}
...
...
graphics/psdrv/ps.c
View file @
91547cbf
...
...
@@ -319,7 +319,7 @@ INT PSDRV_WriteHeader( DC *dc, char *title, int len )
/* FIXME should do something better with BBox */
sprintf
(
buf
,
psheader
,
title
,
0
,
0
,
urx
,
ury
,
orient
);
sprintf
(
buf
,
psheader
,
title
buf
,
0
,
0
,
urx
,
ury
,
orient
);
if
(
WriteSpool16
(
physDev
->
job
.
hJob
,
buf
,
strlen
(
buf
)
)
!=
strlen
(
buf
)
)
{
...
...
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