mirror of https://github.com/stella-emu/stella.git
Remove _6502TS_CORE from include guards now that we have just one core.
This commit is contained in:
parent
6c73c11961
commit
f189906813
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_BACKGROUND
|
||||
#define TIA_6502TS_CORE_BACKGROUND
|
||||
#ifndef TIA_BACKGROUND
|
||||
#define TIA_BACKGROUND
|
||||
|
||||
#include "Serializable.hxx"
|
||||
#include "bspf.hxx"
|
||||
|
@ -57,4 +57,4 @@ class Background : public Serializable
|
|||
Background& operator=(Background&&);
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_BACKGROUND
|
||||
#endif // TIA_BACKGROUND
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_BALL
|
||||
#define TIA_6502TS_CORE_BALL
|
||||
#ifndef TIA_BALL
|
||||
#define TIA_BALL
|
||||
|
||||
#include "Serializable.hxx"
|
||||
#include "bspf.hxx"
|
||||
|
@ -116,4 +116,4 @@ class Ball : public Serializable
|
|||
Ball& operator=(Ball&&);
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_BALL
|
||||
#endif // TIA_BALL
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_DELAY_QUEUE
|
||||
#define TIA_6502TS_CORE_DELAY_QUEUE
|
||||
#ifndef TIA_DELAY_QUEUE
|
||||
#define TIA_DELAY_QUEUE
|
||||
|
||||
#include "bspf.hxx"
|
||||
#include "DelayQueueMember.hxx"
|
||||
|
@ -68,4 +68,4 @@ template<class T> void DelayQueue::execute(T executor)
|
|||
myIndex = (myIndex + 1) % myMembers.size();
|
||||
}
|
||||
|
||||
#endif // TIA_6502TS_CORE_DELAY_QUEUE
|
||||
#endif // TIA_DELAY_QUEUE
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_DELAY_QUEUE_MEMBER
|
||||
#define TIA_6502TS_CORE_DELAY_QUEUE_MEMBER
|
||||
#ifndef TIA_DELAY_QUEUE_MEMBER
|
||||
#define TIA_DELAY_QUEUE_MEMBER
|
||||
|
||||
#include "bspf.hxx"
|
||||
|
||||
|
@ -68,4 +68,4 @@ class DelayQueueMember
|
|||
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_DELAY_QUEUE_MEMBER
|
||||
#endif // TIA_DELAY_QUEUE_MEMBER
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_DRAW_COUNTER_DECODES
|
||||
#define TIA_6502TS_CORE_DRAW_COUNTER_DECODES
|
||||
#ifndef TIA_DRAW_COUNTER_DECODES
|
||||
#define TIA_DRAW_COUNTER_DECODES
|
||||
|
||||
#include "bspf.hxx"
|
||||
|
||||
|
@ -52,4 +52,4 @@ class DrawCounterDecodes
|
|||
DrawCounterDecodes& operator=(DrawCounterDecodes&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_DRAW_COUNTER_DECODES
|
||||
#endif // TIA_DRAW_COUNTER_DECODES
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_FRAME_MANAGER
|
||||
#define TIA_6502TS_CORE_FRAME_MANAGER
|
||||
#ifndef TIA_FRAME_MANAGER
|
||||
#define TIA_FRAME_MANAGER
|
||||
|
||||
#include <functional>
|
||||
|
||||
|
@ -103,6 +103,7 @@ class FrameManager : public Serializable
|
|||
enum VblankMode {
|
||||
locked,
|
||||
floating,
|
||||
final,
|
||||
fixed
|
||||
};
|
||||
|
||||
|
@ -161,4 +162,4 @@ class FrameManager : public Serializable
|
|||
FrameManager& operator=(FrameManager&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_FRAME_MANAGER
|
||||
#endif // TIA_FRAME_MANAGER
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_LATCHED_INPUT
|
||||
#define TIA_6502TS_CORE_LATCHED_INPUT
|
||||
#ifndef TIA_LATCHED_INPUT
|
||||
#define TIA_LATCHED_INPUT
|
||||
|
||||
#include "bspf.hxx"
|
||||
|
||||
|
@ -46,4 +46,4 @@ class LatchedInput
|
|||
LatchedInput& operator=(LatchedInput&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_LATCHED_INPUT
|
||||
#endif // TIA_LATCHED_INPUT
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_MISSILE
|
||||
#define TIA_6502TS_CORE_MISSILE
|
||||
#ifndef TIA_MISSILE
|
||||
#define TIA_MISSILE
|
||||
|
||||
#include "Serializable.hxx"
|
||||
#include "bspf.hxx"
|
||||
|
@ -114,4 +114,4 @@ class Missile : public Serializable
|
|||
Missile& operator=(Missile&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_MISSILE
|
||||
#endif // TIA_MISSILE
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_PADDLE_READER
|
||||
#define TIA_6502TS_CORE_PADDLE_READER
|
||||
#ifndef TIA_PADDLE_READER
|
||||
#define TIA_PADDLE_READER
|
||||
|
||||
#include "bspf.hxx"
|
||||
#include "TvMode.hxx"
|
||||
|
@ -64,4 +64,4 @@ class PaddleReader
|
|||
PaddleReader& operator=(PaddleReader&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_PADDLE_READER
|
||||
#endif // TIA_PADDLE_READER
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_PLAYER
|
||||
#define TIA_6502TS_CORE_PLAYER
|
||||
#ifndef TIA_PLAYER
|
||||
#define TIA_PLAYER
|
||||
|
||||
#include "Serializable.hxx"
|
||||
#include "bspf.hxx"
|
||||
|
@ -123,4 +123,4 @@ class Player : public Serializable
|
|||
Player& operator=(Player&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_PLAYER
|
||||
#endif // TIA_PLAYER
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_PLAYFIELD
|
||||
#define TIA_6502TS_CORE_PLAYFIELD
|
||||
#ifndef TIA_PLAYFIELD
|
||||
#define TIA_PLAYFIELD
|
||||
|
||||
#include "Serializable.hxx"
|
||||
#include "bspf.hxx"
|
||||
|
@ -117,4 +117,4 @@ class Playfield : public Serializable
|
|||
Playfield& operator=(Playfield&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_PLAYFIELD
|
||||
#endif // TIA_PLAYFIELD
|
||||
|
|
|
@ -15,8 +15,8 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_TIA
|
||||
#define TIA_6502TS_CORE_TIA
|
||||
#ifndef TIA_TIA
|
||||
#define TIA_TIA
|
||||
|
||||
#include "bspf.hxx"
|
||||
#include "Sound.hxx"
|
||||
|
@ -463,4 +463,4 @@ class TIA : public Device
|
|||
TIA& operator=(TIA&&) = delete;
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_TIA
|
||||
#endif // TIA_TIA
|
||||
|
|
|
@ -15,11 +15,11 @@
|
|||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//============================================================================
|
||||
|
||||
#ifndef TIA_6502TS_CORE_TYPES
|
||||
#define TIA_6502TS_CORE_TYPES
|
||||
#ifndef TIA_TYPES
|
||||
#define TIA_TYPES
|
||||
|
||||
enum TvMode {
|
||||
pal, ntsc
|
||||
};
|
||||
|
||||
#endif // TIA_6502TS_CORE_TYPES
|
||||
#endif // TIA_TYPES
|
||||
|
|
Loading…
Reference in New Issue