From 9a3c3440de27f95e78cdb0a0cfd2e0eead1e8d82 Mon Sep 17 00:00:00 2001 From: otya128 Date: Tue, 4 Jul 2017 22:11:36 +0900 Subject: [PATCH] Fix for 64-bit env --- SMILEBASIC/console.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMILEBASIC/console.d b/SMILEBASIC/console.d index 2eaf5fe..e63b7d5 100644 --- a/SMILEBASIC/console.d +++ b/SMILEBASIC/console.d @@ -406,7 +406,7 @@ class Console { cc.foreColor = 1; } - drawCharacter(j, CSRYs[0], cc); + drawCharacter(cast(int)j, CSRYs[0], cc); } } for(int y = 0; y < consoleHeight; y++)