diff options
author | Daniel Borca <dborca@users.sourceforge.net> | 2006-03-31 20:49:55 +0000 |
---|---|---|
committer | Daniel Borca <dborca@users.sourceforge.net> | 2006-03-31 20:49:55 +0000 |
commit | 3a46dff27d797f5ce067a305880ef1816e4a76d4 (patch) | |
tree | 1cad61e88bee8b628f4dd361046974009986f0f4 /src/glut | |
parent | 29d833bd5299860f9e3fed066df4a91931a5de67 (diff) |
Removed empty arrays.
Diffstat (limited to 'src/glut')
-rw-r--r-- | src/glut/dos/mroman.c | 6 | ||||
-rw-r--r-- | src/glut/dos/roman.c | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/src/glut/dos/mroman.c b/src/glut/dos/mroman.c index 5bf76dbf73..137458b754 100644 --- a/src/glut/dos/mroman.c +++ b/src/glut/dos/mroman.c @@ -5,11 +5,7 @@ /* char: 0x20 */ -static const GLUTStrokeStrip ch32st[] = -{ -}; - -static const GLUTStrokeChar ch32 = {104.7619f,0,ch32st}; +static const GLUTStrokeChar ch32 = {104.7619f,0,NULL}; /* char: 0x21 */ diff --git a/src/glut/dos/roman.c b/src/glut/dos/roman.c index 89867c8f6c..c30d76eb3f 100644 --- a/src/glut/dos/roman.c +++ b/src/glut/dos/roman.c @@ -5,11 +5,7 @@ /* char: 0x20 */ -static const GLUTStrokeStrip ch32st[] = -{ -}; - -static const GLUTStrokeChar ch32 = {104.7619f,0,ch32st}; +static const GLUTStrokeChar ch32 = {104.7619f,0,NULL}; /* char: 0x21 */ |