Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
atari:xbios: Remove useless variable
- Loading branch information
Showing
with
1 addition
and
3 deletions.
-
+0
−1
src/video/xbios/SDL_xbios.c
-
+1
−2
src/video/xbios/SDL_xbios.h
|
@@ -524,7 +524,6 @@ static SDL_Surface *XBIOS_SetVideoMode(_THIS, SDL_Surface *current, |
|
|
#endif |
|
|
|
|
|
this->UpdateRects = XBIOS_updRects; |
|
|
XBIOS_recoffset = 2; |
|
|
|
|
|
return (current); |
|
|
} |
|
|
|
@@ -36,7 +36,7 @@ |
|
|
typedef struct |
|
|
{ |
|
|
Uint16 number; /* Video mode number */ |
|
|
Uint16 width; /* Size */ |
|
|
Uint16 width; /* Size */ |
|
|
Uint16 height; |
|
|
Uint16 depth; /* bits per plane */ |
|
|
Uint16 flags; |
|
@@ -56,7 +56,6 @@ struct SDL_PrivateVideoData { |
|
|
void *shadowscreen; /* Shadow screen for c2p conversion */ |
|
|
int frame_number; /* Number of frame for double buffer */ |
|
|
int pitch; /* Destination line width for C2P */ |
|
|
int recalc_offset; /* Recalculate SDL_Surface offset for C2P */ |
|
|
|
|
|
xbiosmode_t *current; /* Current set mode */ |
|
|
int SDL_nummodes[NUM_MODELISTS]; |
|
|