1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

fix for 640x480 mode

This commit is contained in:
FunkyFr3sh 2018-03-12 11:40:35 +01:00
parent fcdc863ffa
commit 688ae45001
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
1 VERSIONINFO
FILEVERSION 1,1,5,2
PRODUCTVERSION 1,1,5,2
FILEVERSION 1,1,5,3
PRODUCTVERSION 1,1,5,3
{
BLOCK "StringFileInfo"
{
@ -8,13 +8,13 @@ PRODUCTVERSION 1,1,5,2
{
VALUE "CompanyName", "cncnet.org"
VALUE "FileDescription", "DirectDraw replacement for C&C95 and Red Alert"
VALUE "FileVersion", "1.1.5.2"
VALUE "FileVersion", "1.1.5.3"
VALUE "InternalName", "ddraw"
VALUE "LegalCopyright", "Copyright (c) 2010-2018"
VALUE "LegalTrademarks", ""
VALUE "OriginalFileName", "ddraw.dll"
VALUE "ProductName", "DirectDraw replacement for C&C95 and Red Alert"
VALUE "ProductVersion", "1.1.5.2"
VALUE "ProductVersion", "1.1.5.3"
VALUE "Comments", "https://cncnet.org"
}
}

View File

@ -192,7 +192,7 @@ void mouse_lock()
SetRect(&rc, pt.x, pt.y, pt2.x, pt2.y);
rc.bottom -= (yAdjust * 2);
rc.bottom -= (yAdjust * 2) * ((float)ddraw->render.height / ddraw->height);
if(ddraw->adjmouse)
{