Skip to content

Commit

Permalink
2003-11-01
Browse files Browse the repository at this point in the history
  • Loading branch information
makiuchi-d committed Sep 21, 2015
1 parent e4a168f commit 2b0e95c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions delogo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,14 @@ void deLOGO_Base::AdjustLogo(int x,int y,int depth)
adjdata->x = data->x + int(x/4);
adjx = x % 4;
} else {
adjdata->x = data->x - int((x-3)/4);
adjdata->x = data->x + int((x-3)/4);
adjx = 4 - (-x%4);
}
if(y>=0){
adjdata->y = data->y + int(y/4);
adjy = y % 4;
} else {
adjdata->y = data->y - int((y-3)/4);
adjdata->y = data->y + int((y-3)/4);
adjy = 4 - (-y%4);
}

Expand Down
6 changes: 3 additions & 3 deletions delogo.rc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,0,1,1
FILEVERSION 0,0,1,2
PRODUCTVERSION 0,0,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
Expand All @@ -46,12 +46,12 @@ BEGIN
BEGIN
VALUE "Comments", "YUY2��p"
VALUE "FileDescription", "���ߐ����S �t�B���^ Plugin for AviSynth 2.5\0"
VALUE "FileVersion", "0.0.1.1\0"
VALUE "FileVersion", "0.0.1.2\0"
VALUE "InternalName", "deLogo\0"
VALUE "LegalCopyright", "(C) MakKi\0"
VALUE "OriginalFilename", "delogo.dll\0"
VALUE "ProductName", "���ߐ����S �t�B���^\0"
VALUE "ProductVersion", "0.01a\0"
VALUE "ProductVersion", "0.01b\0"
END
END
BLOCK "VarFileInfo"
Expand Down
5 changes: 3 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----------------------------------------------------------------------
���ߐ����S �t�B���^ for AviSynth 2.5 ver 0.01a by MakKi
���ߐ����S �t�B���^ for AviSynth 2.5 ver 0.01b by MakKi
-----------------------------------------------------------------------

�y�@�\�z
Expand Down Expand Up @@ -60,7 +60,8 @@

�y�X�V�����z

2003/10/26 ver 0.01a �Epos_x,pos_y��200�����̎��G���[�ɂȂ邱�Ƃ��������̂��C��
2003/11/01 ver 0.01b �Epos_x,pos_y�ɕ��̒l�����Ă��������ɂȂ��Ă����o�O�C��
2003/10/26 ver 0.01a �Epos_x,pos_y��-200�����̎��G���[�ɂȂ邱�Ƃ��������̂��C��
2003/10/01 ver 0.01 �E���J


Expand Down

0 comments on commit 2b0e95c

Please sign in to comment.