Add proper NTSC conversion values
This commit is contained in:
@@ -13,11 +13,13 @@ namespace JabyEngine {
|
||||
static constexpr auto Height = PublicDisplay::Height;
|
||||
|
||||
#ifdef JABYENGINE_PAL
|
||||
static constexpr auto DisplayMode = GPU_IO::DisplayMode::PAL();
|
||||
static constexpr uint16_t ScanlinesV = 288;
|
||||
static constexpr auto DisplayMode = GPU_IO::DisplayMode::PAL();
|
||||
static constexpr uint16_t ScanlinesV = 288;
|
||||
static constexpr auto DisplayRange = PositionI16::create(78, 35);
|
||||
#else
|
||||
static constexpr auto DisplayMode = GPU_IO::DisplayMode::NTSC();
|
||||
static constexpr uint16_t ScanlinesV = 240;
|
||||
static constexpr auto DisplayMode = GPU_IO::DisplayMode::NTSC();
|
||||
static constexpr uint16_t ScanlinesV = 240;
|
||||
static constexpr auto DisplayRange = PositionI16::create(76, 16);
|
||||
#endif //JABYENGINE_PAL
|
||||
|
||||
static uint32_t exchange_buffer_and_display();
|
||||
|
||||
Reference in New Issue
Block a user