Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
Fixed 'R' character not displaying correctly.
  • Loading branch information
dseguin committed Jul 22, 2017
1 parent 122e5b0 commit dc74c84
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2017-07-22 - Version 1.4.1 ***

* Now tracking each player's score individually
* Added ingame score board
* Fixed windowed resolution only using some resolutions

2017-07-19 - Version 1.4.0 ***

* Added multiplayer support
Expand Down
20 changes: 10 additions & 10 deletions src/asteroids.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ int main (int argc,
28,30,38,36,28, /*O*/
36,28,30,34,32, /*P*/
38,36,28,30,38,33, /*Q*/
36,28,34,32,38, /*R*/
36,28,30,34,32,38, /*R*/
30,28,32,34,38,36, /*S*/
28,30,29,37, /*T*/
28,36,38,30, /*U*/
Expand Down Expand Up @@ -389,21 +389,21 @@ int main (int argc,
sizeof(GLubyte)*161, /*P*/
sizeof(GLubyte)*166, /*Q*/
sizeof(GLubyte)*172, /*R*/
sizeof(GLubyte)*177, /*S*/
sizeof(GLubyte)*183, /*T*/
sizeof(GLubyte)*187, /*U*/
sizeof(GLubyte)*191, /*V*/
sizeof(GLubyte)*194, /*W*/
sizeof(GLubyte)*199, /*X*/
sizeof(GLubyte)*204, /*Y*/
sizeof(GLubyte)*209};/*Z*/
sizeof(GLubyte)*178, /*S*/
sizeof(GLubyte)*184, /*T*/
sizeof(GLubyte)*188, /*U*/
sizeof(GLubyte)*192, /*V*/
sizeof(GLubyte)*195, /*W*/
sizeof(GLubyte)*200, /*X*/
sizeof(GLubyte)*205, /*Y*/
sizeof(GLubyte)*210};/*Z*/
const GLubyte object_element_count[] = {8,4, 4,2, 16,8, 28,14,22,6,
22,2, 22,6, 22,7, 22,5, 22,6,
22,6, 22,3, 22,7, 22,5, 22,6,
22,6, 22,4, 22,5, 22,7, 22,6,
22,6, 22,6, 22,6, 22,5, 22,6,
22,3, 22,5, 22,4, 22,5, 22,5,
22,6, 22,5, 22,6, 22,4, 22,4,
22,6, 22,6, 22,6, 22,4, 22,4,
22,3, 22,5, 22,5, 22,5, 22,4}; /*(vertex,index)*/
GLuint object_buffers[] = {0,0};
GLfloat temp_point1[] = {0.f,0.f}; /*[x,y]*/
Expand Down

0 comments on commit dc74c84

Please sign in to comment.