Some small changes to ensure code compiles with GCC. (PR #877)
This commit is contained in:
parent
8ef34d7d76
commit
3d70a9dd35
5 changed files with 6 additions and 3 deletions
|
@ -44,7 +44,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#include "Speech.h"
|
#include "Speech.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const UINT VERSIONSTRING_SIZE = 16;
|
static const UINT VERSIONSTRING_SIZE = 16;
|
||||||
static UINT16 g_OldAppleWinVersion[4] = {0};
|
static UINT16 g_OldAppleWinVersion[4] = {0};
|
||||||
UINT16 g_AppleWinVersion[4] = { 0 };
|
UINT16 g_AppleWinVersion[4] = { 0 };
|
||||||
TCHAR VERSIONSTRING[VERSIONSTRING_SIZE] = "xx.yy.zz.ww";
|
TCHAR VERSIONSTRING[VERSIONSTRING_SIZE] = "xx.yy.zz.ww";
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
|
#include "Card.h"
|
||||||
|
|
||||||
// Memory Flag
|
// Memory Flag
|
||||||
#define MF_80STORE 0x00000001
|
#define MF_80STORE 0x00000001
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "Video.h"
|
||||||
|
|
||||||
// Globals (Public)
|
// Globals (Public)
|
||||||
extern uint16_t g_nVideoClockVert;
|
extern uint16_t g_nVideoClockVert;
|
||||||
extern uint16_t g_nVideoClockHorz;
|
extern uint16_t g_nVideoClockHorz;
|
||||||
|
|
|
@ -45,7 +45,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#include "Mockingboard.h"
|
#include "Mockingboard.h"
|
||||||
#include "Windows/WinFrame.h"
|
#include "Windows/WinFrame.h"
|
||||||
|
|
||||||
#include "Configuration/PropertySheet.h"
|
#include "Configuration/IPropertySheet.h"
|
||||||
#include "Tfe/Tfe.h"
|
#include "Tfe/Tfe.h"
|
||||||
|
|
||||||
// Backwards compatibility with AppleWin <1.24.0
|
// Backwards compatibility with AppleWin <1.24.0
|
||||||
|
|
|
@ -100,7 +100,7 @@ static bool g_bVideoScannerNTSC = true; // NTSC video scanning (or PAL)
|
||||||
|
|
||||||
// NOTE: KEEP IN SYNC: VideoType_e g_aVideoChoices g_apVideoModeDesc
|
// NOTE: KEEP IN SYNC: VideoType_e g_aVideoChoices g_apVideoModeDesc
|
||||||
// The window title will be set to this.
|
// The window title will be set to this.
|
||||||
const char *g_apVideoModeDesc[ NUM_VIDEO_MODES ] =
|
static const char *g_apVideoModeDesc[ NUM_VIDEO_MODES ] =
|
||||||
{
|
{
|
||||||
"Monochrome (Custom)"
|
"Monochrome (Custom)"
|
||||||
, "Color (Composite Idealized)"
|
, "Color (Composite Idealized)"
|
||||||
|
|
Loading…
Add table
Reference in a new issue