mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtscreen: remove register keyword
This commit is contained in:
parent
3096ad03a8
commit
a66948f73e
2 changed files with 6 additions and 6 deletions
|
@ -342,10 +342,10 @@ shootup(perwindow *pwin, pyrostruct *pp, rocket *rp)
|
||||||
static void
|
static void
|
||||||
burst(perwindow *pwin, pyrostruct *pp, rocket *rp)
|
burst(perwindow *pwin, pyrostruct *pp, rocket *rp)
|
||||||
{
|
{
|
||||||
register int starn;
|
int starn;
|
||||||
register int nstars, stype;
|
int nstars, stype;
|
||||||
register float rx, ry, sd; /* Help compiler optimize :-) */
|
float rx, ry, sd; /* Help compiler optimize :-) */
|
||||||
register float sx, sy;
|
float sx, sy;
|
||||||
|
|
||||||
nstars = rp->nstars;
|
nstars = rp->nstars;
|
||||||
stype = rp->shelltype;
|
stype = rp->shelltype;
|
||||||
|
|
|
@ -168,8 +168,8 @@ initrotor(perwindow *pwin)
|
||||||
void
|
void
|
||||||
drawrotor(perwindow *pwin)
|
drawrotor(perwindow *pwin)
|
||||||
{
|
{
|
||||||
register flightstruct *fs;
|
flightstruct *fs;
|
||||||
register struct elem *pelem;
|
struct elem *pelem;
|
||||||
int thisx,
|
int thisx,
|
||||||
thisy;
|
thisy;
|
||||||
int i,
|
int i,
|
||||||
|
|
Loading…
Reference in a new issue