Fix embarrising typo

This commit is contained in:
2024-02-09 10:21:37 -05:00
parent 37c4323fa1
commit cad7d7fa3f
4 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#include "GPU/gpu_types.hpp"
namespace JabyEngine {
#define TEST_STR "Planschbecken sind default"
struct Configuration {
struct BIOSFont {
static constexpr auto TextureLoadPos = GPU::PositionU16::create(320, 256);
static constexpr auto CLUTLoadPos = GPU::PositionU16::create(320, 511);
};
struct Periphery {
static constexpr bool IncludePortB = false;
static constexpr bool UseMultiTap = false;
};
};
}