Skip to content
This repository has been archived by the owner on Apr 9, 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 11, 2020
1 parent 6e2316d commit 8ac3487
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions grpdecompiler.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ void show_intro()
{
putchar('\n');
puts("GRP DECOMPILER");
puts("Version 2.0.6");
puts("Version 2.0.7");
puts("This program distributed under GNU GENERAL PUBLIC LICENSE");
puts("File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich");
puts("2010-2019 years");
puts("2010-2020 years");
putchar('\n');
}

Expand Down Expand Up @@ -110,7 +110,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
13 changes: 7 additions & 6 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GRP DECOMPILER

Version 2.0.6
Version 2.0.7

File extraction tools for GRP pseudo-archives by Popov Evgeniy Alekseyevich

Expand Down Expand Up @@ -63,8 +63,9 @@ Version history
1.7 - 1.8 - Small changes in source code
1.9 - Filename checking has been improved
1.9.0.1 � Documentation was updated
1.9.1 - 1.9.6 - Small changes.
1.9.8 - 2.0.1 - Small bug with output file names was fixed.
2.0.2 - 2.0.4 - Small changes.
2.0.4.1 - Makefile was updated.
2.0.5 - 2.0.6 - Small changes.
1.9.1 - 1.9.6 - Small changes
1.9.8 - 2.0.1 - Small bug with output file names was fixed
2.0.2 - 2.0.4 - Small changes
2.0.4.1 - Makefile was updated
2.0.5 - 2.0.6 - Small changes
2.0.7 - Small bug was fixed

0 comments on commit 8ac3487

Please sign in to comment.