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
bac7be75
Commit
bac7be75
authored
Dec 25, 1999
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cast the unsigned int to signed, or NEAR_MATCH will not work.
parent
b4b9303e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
audio.c
dlls/winmm/wineoss/audio.c
+1
-1
No files found.
dlls/winmm/wineoss/audio.c
View file @
bac7be75
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
DEFAULT_DEBUG_CHANNEL
(
wave
)
DEFAULT_DEBUG_CHANNEL
(
wave
)
/* Allow 1% deviation for sample rates (some ES137x cards) */
/* Allow 1% deviation for sample rates (some ES137x cards) */
#define NEAR_MATCH(rate1,rate2) (((100*(
rate1-rate2))/rate1
)==0)
#define NEAR_MATCH(rate1,rate2) (((100*(
(int)(rate1)-(int)(rate2)))/(rate1)
)==0)
#ifdef HAVE_OSS
#ifdef HAVE_OSS
...
...
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