forked from len0rd/rockbox
Fix yellow in rocklife. j=j++ was most likely meant to be j++. Seems to be no change in behavior of my test file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20605 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8185e0b222
commit
8a36b1c323
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ static bool load_cellfile(const char *file, char *pgrid){
|
|||
|
||||
switch(buf1[i]){
|
||||
case '.':
|
||||
j=j++;
|
||||
j++;
|
||||
break;
|
||||
case 'O':
|
||||
set_cell(xmid + j, ymid + k, pgrid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue