Skip to content

Commit

Permalink
freebasic bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RetroNick2020 committed Mar 28, 2022
1 parent 344b75e commit c2bc469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rmabout.pas
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ExtCtrls,lclintf;

Const
ProgramName ='Raster Master v1.0 R41';
ProgramName ='Raster Master v1.0 R42';
ProgramLicense = 'Released under MIT License';

type
Expand Down
2 changes: 1 addition & 1 deletion rwxgf2.pas
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function GetXImageSizeFB(width,height : integer) : longint;
begin
myWidth:=x2-x+1;
myHeight:=y2-y+1;
myHead.Width:=myWidth;
myHead.Width:=mywidth SHL 3;
myHead.Height:=myHeight;

Move(myHead,tempBuf,sizeof(tempBuf));
Expand Down

0 comments on commit c2bc469

Please sign in to comment.