1
0
Fork 0
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:
Tom Ross 2009-04-02 06:26:21 +00:00
parent 8185e0b222
commit 8a36b1c323

View file

@ -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);