Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 20, 2002
1 parent 98d4594 commit 8c6aada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/macosx/.cvsignore
Expand Up @@ -4,3 +4,4 @@ Makefile
*.o
*.lo
*.la
Info.plist
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -844,7 +844,7 @@ SDL_Surface * SDL_DisplayFormat (SDL_Surface *surface)
return(NULL);
}
/* Set the flags appropriate for copying to display surface */
if ((SDL_PublicSurface->flags&SDL_HWSURFACE == SDL_HWSURFACE) && current_video->info.blit_hw)
if (((SDL_PublicSurface->flags&SDL_HWSURFACE) == SDL_HWSURFACE) && current_video->info.blit_hw)
flags = SDL_HWSURFACE;
else
flags = SDL_SWSURFACE;
Expand Down

0 comments on commit 8c6aada

Please sign in to comment.