--- nono/lib/textscreen.h 2026/04/29 17:05:30 1.1.1.15 +++ nono/lib/textscreen.h 2026/04/29 17:05:57 1.1.1.17 @@ -10,7 +10,7 @@ #pragma once -#include "nono.h" +#include "header.h" #include // 属性 @@ -27,15 +27,15 @@ class TA // // B はボールド。 // Color Code は 4bit の前景色・背景色ペアの固定パレット。 - Normal = 0x00 << 8, // 通常描画色 - Reverse = 0x01 << 8, // 反転、背景黒 - Off = 0x02 << 8, // オフを示す - Disable = 0x03 << 8, // 無効を示す - ReverseRed = 0x04 << 8, // 反転、背景赤 - ReverseGreen = 0x05 << 8, // 反転、背景緑 - ReverseOrange = 0x06 << 8, // 反転、背景オレンジ + Normal = 0x00U << 8, // 通常描画色 + Reverse = 0x01U << 8, // 反転、背景黒 + Off = 0x02U << 8, // オフを示す + Disable = 0x03U << 8, // 無効を示す + ReverseRed = 0x04U << 8, // 反転、背景赤 + ReverseGreen = 0x05U << 8, // 反転、背景緑 + ReverseOrange = 0x06U << 8, // 反転、背景オレンジ - Bold = 0x80 << 8, // ボールド + Bold = 0x80U << 8, // ボールド // エイリアス On = Reverse, // オンは反転で表現している