forked from SDL-Hercules-390/hyperion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backout 28 Jul fix for LCS (fix was only meant for CTCI)
git-svn-id: file:///home/jj/hercules.svn/trunk@4436 956126f8-22a0-4046-8f4a-272fa8102e63
- Loading branch information
Fish (David B Trout)
committed
Aug 17, 2007
1 parent
e886e7c
commit 6ef5754
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ | |
// $Id$ | ||
// | ||
// $Log$ | ||
// Revision 1.65 2007/07/29 02:02:44 fish | ||
// Fix day-1 CTCI/LCS bug found by Vince Weaver [[email protected]] | ||
// | ||
// Revision 1.64 2007/06/23 00:04:05 ivan | ||
// Update copyright notices to include current year (2007) | ||
// | ||
|
@@ -783,9 +786,7 @@ void LCS_Read( DEVBLK* pDEVBLK, U16 sCount, | |
// Terminate the frame buffer | ||
STORE_HW( pFrame->hwOffset, 0x0000 ); | ||
|
||
// (fix for day-1 bug offered by Vince Weaver [[email protected]]) | ||
// iLength = pLCSDEV->iFrameOffset + 2; | ||
iLength = pLCSDEV->iFrameOffset; | ||
iLength = pLCSDEV->iFrameOffset + 2; | ||
|
||
if( sCount < iLength ) | ||
{ | ||
|