|
1 | 1 | #!/usr/local/bin/nubasic |
2 | 2 | ' ----------------------------------------------------------------------------- |
3 | | -' nuTris3D.bas for nuBASIC is a clone of a famous game :) |
| 3 | +' nuTetris3D.bas for nuBASIC is a clone of a famous game :) |
4 | 4 | ' ----------------------------------------------------------------------------- |
5 | 5 | ' |
6 | 6 | ' This file is part of nuBASIC |
@@ -135,7 +135,7 @@ Sub SetupGame() |
135 | 135 | DrawScoreBoard scbx%, scby%, atom_size% |
136 | 136 |
|
137 | 137 |
|
138 | | - TextOut 30, 40, "Welcome to nuTris 3D " + version$, &hffffff |
| 138 | + TextOut 30, 40, "Welcome to nuTetris 3D " + version$, &hffffff |
139 | 139 |
|
140 | 140 | TextOut 30, 70, " To play press: ", &hffffff |
141 | 141 |
|
@@ -488,7 +488,7 @@ Sub DrawScoreBoard( offsetx%, offsety%, width% ) |
488 | 488 |
|
489 | 489 | FillRect offsetx%, y%, x%, y% + 100, color%(0) |
490 | 490 | Rect offsetx%, y%, x%, y% + 100, color%(2) |
491 | | - TextOut offsetx% + 15, y% + 20, "nuTris 3D " + version$, color%(9) |
| 491 | + TextOut offsetx% + 15, y% + 20, "nuTetris 3D " + version$, color%(9) |
492 | 492 | TextOut offsetx% + 15, y% + 50, "Score : " + str$( score% * 10 ), color%(3) |
493 | 493 | level% = score% Div 50 |
494 | 494 | If level% > 9 Then level% = 9 |
|
0 commit comments