comparison src/wads2.cc @ 83:002bc70a3982

More cleanups. Mostly variable renames.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 26 Sep 2011 18:06:30 +0300
parents 2f1ecc1c5f72
children c518e08d5961
comparison
equal deleted inserted replaced
82:154714f3ab2e 83:002bc70a3982
92 printf(" *-----------------------------------------------------*\n"); 92 printf(" *-----------------------------------------------------*\n");
93 printf(" | Warning: this is the shareware version of the game. |\n"); 93 printf(" | Warning: this is the shareware version of the game. |\n");
94 printf(" | You won't be allowed to save your changes. |\n"); 94 printf(" | You won't be allowed to save your changes. |\n");
95 printf(" | PLEASE REGISTER YOUR COPY OF THE GAME. |\n"); 95 printf(" | PLEASE REGISTER YOUR COPY OF THE GAME. |\n");
96 printf(" *-----------------------------------------------------*\n"); 96 printf(" *-----------------------------------------------------*\n");
97 cfg.Registered = false; // If you remove this, bad things will happen to you... 97 cfg.registered = false; // If you remove this, bad things will happen to you...
98 } 98 }
99 else 99 else
100 cfg.Registered = true; 100 cfg.registered = true;
101 101
102 return 0; 102 return 0;
103 } 103 }
104 104
105 105