Skip to content

Commit

Permalink
Use wrong line length of menubar save buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Jun 7, 2005
1 parent 33c5879 commit 714dceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/gem/SDL_gemvideo.c
Expand Up @@ -557,7 +557,7 @@ static void GEM_LockScreen(_THIS)
mfdb_src.fd_addr=GEM_menubar;
mfdb_src.fd_w=GEM_desk_w;
mfdb_src.fd_h=GEM_desk_y;
mfdb_src.fd_wdwidth= (GEM_desk_w*VDI_pixelsize) >> 4;
mfdb_src.fd_wdwidth=GEM_desk_w>>4;
mfdb_src.fd_nplanes=VDI_bpp;
mfdb_src.fd_stand=
mfdb_src.fd_r1=
Expand Down Expand Up @@ -587,7 +587,7 @@ static void GEM_UnlockScreen(_THIS)
mfdb_src.fd_addr=GEM_menubar;
mfdb_src.fd_w=GEM_desk_w;
mfdb_src.fd_h=GEM_desk_y;
mfdb_src.fd_wdwidth= (GEM_desk_w*VDI_pixelsize) >> 4;
mfdb_src.fd_wdwidth=GEM_desk_w>>4;
mfdb_src.fd_nplanes=VDI_bpp;
mfdb_src.fd_stand=
mfdb_src.fd_r1=
Expand Down

0 comments on commit 714dceb

Please sign in to comment.