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
8a46be6c
Commit
8a46be6c
authored
Jan 27, 2009
by
Alasdair Sinclair
Committed by
Alexandre Julliard
Jan 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Fix missing void in empty parameter list.
parent
f95b0209
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
d3d.c
dlls/ddraw/tests/d3d.c
+1
-1
visual.c
dlls/ddraw/tests/visual.c
+1
-1
No files found.
dlls/ddraw/tests/d3d.c
View file @
8a46be6c
...
...
@@ -1635,7 +1635,7 @@ static void D3D7_OldRenderStateTest(void)
#define IS_VALUE_NEAR(a, b) ( ((a) == (b)) || ((a) == (b) - 1) || ((a) == (b) + 1) )
#define MIN(a, b) ((a) < (b) ? (a) : (b))
static
void
DeviceLoadTest
()
static
void
DeviceLoadTest
(
void
)
{
DDSURFACEDESC2
ddsd
;
IDirectDrawSurface7
*
texture_levels
[
2
][
8
];
...
...
dlls/ddraw/tests/visual.c
View file @
8a46be6c
...
...
@@ -2167,7 +2167,7 @@ static BOOL colortables_check_equality(PALETTEENTRY table1[256], RGBQUAD table2[
return
TRUE
;
}
static
void
p8_primary_test
()
static
void
p8_primary_test
(
void
)
{
/* Test 8bit mode used by games like StarCraft, C&C Red Alert I etc */
DDSURFACEDESC
ddsd
;
...
...
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