Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Small bug was fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
PopovEvgeniy committed Jun 15, 2020
1 parent 737058c commit 775adcd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions magicswf.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ int main(int argc, char *argv[])
void show_intro()
{
putchar('\n');
puts("Magic swf. Version 1.4.1");
puts("Magic swf. Version 1.4.2");
puts("Simple tool for converting Adobe flash movie to self-played movie");
puts("This sofware made by Popov Evgeniy Alekseyevich,2011-2019 years");
puts("This sofware made by Popov Evgeniy Alekseyevich,2011-2020 years");
puts("This software distributed under GNU GENERAL PUBLIC LICENSE");
}

Expand Down Expand Up @@ -103,7 +103,7 @@ void data_dump(FILE *input,FILE *output,const size_t length)
for (index=0;index<length;++index)
{
fread(&data,sizeof(unsigned char),1,input);
fwrite(&data,sizeof(unsigned char),1,input);
fwrite(&data,sizeof(unsigned char),1,output);
}

}
Expand Down
5 changes: 3 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Simple tool for converting Adobe flash movie to self-played movie
This software made by Popov Evgeniy Alekseyevich

Version 1.4.1
Version 1.4.2

System requirement

Expand Down Expand Up @@ -49,4 +49,5 @@ Version history
0.9.9 - Small bug was fixed.
1.0 - 1.1 - Small changes.
1.1.1 - Source code was recompiled under Open Watcom.
1.2 - 1.4.1 - Small changes.
1.2 - 1.4.1 - Small changes.
1.4.2 - Small bug was fixed.

0 comments on commit 775adcd

Please sign in to comment.