Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Use wrong line length of menubar save buffer
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
src/video/gem/SDL_gemvideo.c
|
@@ -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= |
|
@@ -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= |
|
|