Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 15, 2007
1 parent 9dd423a commit e51cb16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/video/gem/SDL_gemevents.c
Expand Up @@ -77,7 +77,7 @@ GEM_PumpEvents(_THIS)
wind_get(GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2);
event_mask |= MU_M1;
mouse_event = ((SDL_GetAppState() & SDL_APPMOUSEFOCUS) ==
SDL_APPMOUSEFOCUS) ? MO_LEAVE : MO_ENTER;
SDL_APPMOUSEFOCUS) ? MO_LEAVE : MO_ENTER;
}

resultat = evnt_multi(event_mask,
Expand Down Expand Up @@ -107,7 +107,7 @@ GEM_PumpEvents(_THIS)
if (this->input_grab == SDL_GRAB_OFF) {
/* Switch mouse focus state */
SDL_PrivateAppActive((mouse_event == MO_ENTER),
SDL_APPMOUSEFOCUS);
SDL_APPMOUSEFOCUS);
}
GEM_CheckMouseMode(this);
}
Expand Down
7 changes: 3 additions & 4 deletions src/video/gem/SDL_gemmodes.c
Expand Up @@ -36,10 +36,9 @@ GEM_InitModes(_THIS)

/* read vdi bpp, rmask, gmask, bmask, amask */

mode.format =
SDL_MasksToPixelFormatEnum(bpp, Rmask, Gmask, Bmask, Amask);
mode.w = 0 /* vdi width */;
mode.h = 0 /* vdi height */;
mode.format = SDL_MasksToPixelFormatEnum(bpp, Rmask, Gmask, Bmask, Amask);
mode.w = 0 /* vdi width */ ;
mode.h = 0 /* vdi height */ ;
mode.refresh_rate = 0;
mode.driverdata = NULL;

Expand Down
2 changes: 1 addition & 1 deletion src/video/gem/SDL_gemvideo.c
Expand Up @@ -151,7 +151,7 @@ GEM_VideoInit(_THIS)

data->wfeatures = 0;
if (appl_getinfo(AES_WINDOW, &ap_gout[0], &ap_gout[1], &ap_gout[2],
&ap_gout[3]) == 0) {
&ap_gout[3]) == 0) {
data->wfeatures = ap_gout[0];
}
}
Expand Down

0 comments on commit e51cb16

Please sign in to comment.