aboutsummaryrefslogtreecommitdiffstats
path: root/alee-standalone.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
committerClyne Sullivan <clyne@bitgloo.com>2023-03-18 12:40:46 -0400
commitd36bb13f52b3899fd0f57e38f00d97e2c3a0f627 (patch)
treee1a2780f42bf82c6fcbbd9c2219d55dbc8f03c53 /alee-standalone.cpp
parent74753670d582e4ceeaba383e4ce360eb13004a35 (diff)
-Wconversion
Diffstat (limited to 'alee-standalone.cpp')
-rw-r--r--alee-standalone.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/alee-standalone.cpp b/alee-standalone.cpp
index 5c9f8a8..488d3ba 100644
--- a/alee-standalone.cpp
+++ b/alee-standalone.cpp
@@ -51,10 +51,10 @@ int main(int argc, char *argv[])
static void readchar(State& state)
{
- auto idx = state.dict.read(Dictionary::Input);
+ Addr idx = state.dict.read(Dictionary::Input);
Addr addr = Dictionary::Input + sizeof(Cell) + idx;
- auto c = std::cin.get();
+ auto c = static_cast<char>(std::cin.get());
if (isupper(c))
c += 32;
state.dict.writebyte(addr, c ? c : ' ');
@@ -76,7 +76,7 @@ static void load(State& state)
Addr i = 0;
while (file.good())
- state.dict.writebyte(i++, file.get());
+ state.dict.writebyte(i++, file.get() & 0xFFu);
}
void user_sys(State& state)