Skip to content

Commit

Permalink
Added disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparen committed Aug 19, 2015
1 parent 8d00a2e commit 6d9b8c2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dnhobf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ int main(int argc, char** argv){
cout << endl << "DANMAKUFU OBFUSCATOR BY SPAREN" << endl;
if(argc<2){
cout << "Error: No File Specified." << endl;
cout << "Usage: ./dnhobf filename.ext" << endl;
}
for(int i = 1; i < argc; i++){//for every file
FILE* infile = fopen(argv[i], "r");
Expand All @@ -32,6 +33,7 @@ int main(int argc, char** argv){
cout << "1: Only remove comments - good for shrinking filesize" << endl;
cout << "2: Remove comments and whitespace" << endl;
cout << "q: quit" << endl;
cout << "*****Please note that Option 2, though it technically works, is not actually capable with Danmakufu due to Danmakufu interpreting functions differently if there is a new line after their usage. Don't ask why - it's the reason this project is dead." << endl;
cin >> input;
if(input == "1"){
ObfuscateA1(filename); satisfied = true;
Expand Down

0 comments on commit 6d9b8c2

Please sign in to comment.