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
867a8743
Commit
867a8743
authored
Jan 31, 2002
by
Nog
Committed by
Alexandre Julliard
Jan 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed function 0xb.
parent
5038c04e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
int21.c
dlls/winedos/int21.c
+4
-5
No files found.
dlls/winedos/int21.c
View file @
867a8743
...
...
@@ -121,12 +121,11 @@ void WINAPI DOSVM_Int21Handler( CONTEXT86 *context )
case
0x0b
:
/* GET STDIN STATUS */
{
char
x1
,
x2
;
if
(
CONSOLE_CheckForKeystroke
(
&
x1
,
&
x2
))
AL_reg
(
context
)
=
0xff
;
else
BIOSDATA
*
data
=
DOSMEM_BiosData
();
if
(
data
->
FirstKbdCharPtr
==
data
->
NextKbdCharPtr
)
AL_reg
(
context
)
=
0
;
else
AL_reg
(
context
)
=
0xff
;
}
break
;
...
...
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