Skip to content

Commit

Permalink
CGE4: Remove useless variable
Browse files Browse the repository at this point in the history
Thanks DrMcCoy for reporting it
  • Loading branch information
Strangerke committed Sep 13, 2011
1 parent 82e0b6f commit dc934a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions engines/cge/text.cpp
Expand Up @@ -67,10 +67,9 @@ int16 Text::count() {
Common::String line;
char tmpStr[kLineMax + 1];

int n, counter = 0;
int counter = 0;

for (line = tf.readLine(); !tf.eos(); line = tf.readLine()) {
n = line.size();
char *s;

strcpy(tmpStr, line.c_str());
Expand Down

0 comments on commit dc934a3

Please sign in to comment.