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
25a810fb
Commit
25a810fb
authored
Dec 25, 1998
by
Joseph Pranevich
Committed by
Alexandre Julliard
Dec 25, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hook into the (stubbed) resize code in msdos int10.
parent
06591f67
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
int10.c
msdos/int10.c
+11
-1
No files found.
msdos/int10.c
View file @
25a810fb
...
...
@@ -62,15 +62,25 @@ void WINAPI INT_Int10Handler( CONTEXT *context )
0x07 - 80x25
*/
/* We may or may not want to do a refresh between the resize and
the clear... */
switch
(
AL_reg
(
context
))
{
case
0x00
:
case
0x00
:
/* 40x25 */
case
0x01
:
VGA_Exit
();
TRACE
(
int10
,
"Set Video Mode - Set to Text - 0x0%x
\n
"
,
AL_reg
(
context
));
CONSOLE_ResizeScreen
(
40
,
25
);
CONSOLE_ClearScreen
();
break
;
case
0x02
:
case
0x03
:
case
0x07
:
VGA_Exit
();
TRACE
(
int10
,
"Set Video Mode - Set to Text - 0x0%x
\n
"
,
AL_reg
(
context
));
CONSOLE_ResizeScreen
(
80
,
25
);
CONSOLE_ClearScreen
();
break
;
case
0x13
:
...
...
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