Skip to content

Commit 0ab6950

Browse files
author
d3x0r
committedFeb 29, 2016
Remove MAKE_RCOORD_SINGLE and update code to build.
1 parent db4b150 commit 0ab6950

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed
 

Diff for: ‎all_resources.rc

-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@
66
//
77
// Generated from the TEXTINCLUDE 2 resource.
88
//
9-
#if __WATCOMC__ >= 1280
109
#include "windows.h"
11-
#else
12-
#include "afxres.h"
13-
#endif
1410

1511
/////////////////////////////////////////////////////////////////////////////
1612
#undef APSTUDIO_READONLY_SYMBOLS

Diff for: ‎src/games/terrain/land.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define MAKE_RCOORD_SINGLE
1+
//#define MAKE_RCOORD_SINGLE
22
#include <stdhdrs.h>
33
#define USE_RENDER_INTERFACE l.pri
44
#define USE_IMAGE_INTERFACE l.pii
@@ -1136,15 +1136,15 @@ class CyberCycle:public Body
11361136
for( idx = 0; PeekDataQueueEx( &position_history, struct position_history, &curpos, idx ); idx++ )
11371137
{
11381138
//PrintVector( curpos.origin );
1139-
glVertex3fv( curpos.origin );
1139+
glVertex3dv( curpos.origin );
11401140
addscaled( v, curpos.origin, curpos.up, 20.0 );
11411141
//PrintVector( v );
1142-
glVertex3fv( v );
1142+
glVertex3dv( v );
11431143
}
11441144
//PrintVector( pos.origin );
1145-
glVertex3fv( pos.origin );
1145+
glVertex3dv( pos.origin );
11461146
addscaled( v, pos.origin, pos.up, 20.0 );
1147-
glVertex3fv( v );
1147+
glVertex3dv( v );
11481148
glEnd();
11491149
/*
11501150
glBegin( GL_LINE_STRIP );

Diff for: ‎src/games/train/new/train.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#define MAKE_RCOORD_SINGLE
1+
//#define MAKE_RCOORD_SINGLE
22
#include <stdhdrs.h>
33
#include <deadstart.h>
44
#include <logging.h>

0 commit comments

Comments
 (0)
Please sign in to comment.