1
0
Fork 0

Remove dead code remains of WinDIB usage

This used to have meaning for Windows 9x support via SDL 1.2; the issue
described in README was never mentioned in the context of SDL2.

Add missing include to video header while we're at it.
This commit is contained in:
Patryk Obara 2020-03-17 13:12:44 +01:00 committed by Patryk Obara
parent 2fc6771046
commit 08934b2972
3 changed files with 2 additions and 18 deletions

View file

@ -16,10 +16,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef DOSBOX_VIDEO_H
#define DOSBOX_VIDEO_H
#include "types.h"
#define REDUCE_JOYSTICK_POLLING
typedef enum {
@ -68,10 +69,6 @@ void GFX_EndUpdate( const Bit16u *changedLines );
void GFX_GetSize(int &width, int &height, bool &fullscreen);
void GFX_LosingFocus(void);
#if defined (WIN32)
bool GFX_SDLUsingWinDIB(void);
#endif
#if defined (REDUCE_JOYSTICK_POLLING)
void MAPPER_UpdateJoysticks(void);
#endif