Changeset 7f079d9 in mainline for tetris/tetris.c


Ignore:
Timestamp:
2006-06-03T01:24:33Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0861786
Parents:
6c46350
Message:

Tetris now works on mips on gxemul on both console & framebuffer.
It doesn't work in msim, but it seems to be msim bug this time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tetris/tetris.c

    r6c46350 r7f079d9  
    345345                    score, score == 1 ? "" : "s", level, score * level);
    346346        else {
    347                 (void)printf("Your score:  %d point%s x level %d x preview penalty %0.3f = %d\n",
    348                     score, score == 1 ? "" : "s", level, (double)PRE_PENALTY,
    349                     (int)(score * level * PRE_PENALTY));
    350                 score = score * PRE_PENALTY;
     347/*              (void)printf("Your score:  %d point%s x level %d x preview penalty %0.3f = %d\n", */
     348/*                  score, score == 1 ? "" : "s", level, (double)PRE_PENALTY, */
     349/*                  (int)(score * level * PRE_PENALTY)); */
     350/*              score = score * PRE_PENALTY; */
    351351        }
    352352        savescore(level);
Note: See TracChangeset for help on using the changeset viewer.