From d36bb13f52b3899fd0f57e38f00d97e2c3a0f627 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 18 Mar 2023 12:40:46 -0400 Subject: -Wconversion --- alee.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'alee.cpp') diff --git a/alee.cpp b/alee.cpp index dfe85d1..c7c9ddf 100644 --- a/alee.cpp +++ b/alee.cpp @@ -54,9 +54,9 @@ int main(int argc, char *argv[]) static void readchar(State& state) { auto idx = state.dict.read(Dictionary::Input); - Addr addr = Dictionary::Input + sizeof(Cell) + idx; + auto addr = static_cast(Dictionary::Input + sizeof(Cell) + idx); - auto c = std::cin.get(); + auto c = static_cast(std::cin.get()); if (isupper(c)) c += 32; state.dict.writebyte(addr, c ? c : ' '); @@ -77,7 +77,7 @@ static void load(State& state) std::ifstream file ("alee.dat", std::ios::binary); for (Addr i = 0; file.good(); i++) - state.dict.writebyte(i, file.get()); + state.dict.writebyte(i, file.get() & 0xFFu); } void user_sys(State& state) -- cgit v1.2.3