diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
index bc3a852ae..e237fd66d 100644
--- a/.idea/jarRepositories.xml
+++ b/.idea/jarRepositories.xml
@@ -6,6 +6,11 @@
+
+
+
+
+
@@ -16,10 +21,5 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Maven__org_antlr_antlr_runtime_3_5_2.xml b/.idea/libraries/Maven__org_antlr_antlr_runtime_3_5_2.xml
new file mode 100644
index 000000000..fbb9f137e
--- /dev/null
+++ b/.idea/libraries/Maven__org_antlr_antlr_runtime_3_5_2.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/kickc.iml b/kickc.iml
index 0468924bf..7d72bdc9b 100644
--- a/kickc.iml
+++ b/kickc.iml
@@ -12,6 +12,7 @@
+
diff --git a/src/main/kc/include/conio.h b/src/main/kc/include/conio.h
index b2c667af6..f1823abe9 100644
--- a/src/main/kc/include/conio.h
+++ b/src/main/kc/include/conio.h
@@ -60,6 +60,6 @@ unsigned char kbhit (void);
unsigned char cursor(unsigned char onoff);
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
-// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
+// If onoff is 0, scrolling is disabled and the cursor instead moves to (0,0)
// The function returns the old scroll setting.
unsigned char scroll(unsigned char onoff);
\ No newline at end of file
diff --git a/src/main/kc/lib/conio-nes.c b/src/main/kc/lib/conio-nes.c
index 35aebb12b..2b3b3c687 100644
--- a/src/main/kc/lib/conio-nes.c
+++ b/src/main/kc/lib/conio-nes.c
@@ -169,7 +169,7 @@ unsigned char cursor(unsigned char onoff) {
}
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
-// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
+// If onoff is 0, scrolling is disabled and the cursor instead moves to (0,0)
// The function returns the old scroll setting.
unsigned char scroll(unsigned char onoff) {
char old = conio_scroll_enable;
diff --git a/src/test/ref/examples/conio/nacht-screen.asm b/src/test/ref/examples/conio/nacht-screen.asm
index 032cc5726..24702c2d8 100644
--- a/src/test/ref/examples/conio/nacht-screen.asm
+++ b/src/test/ref/examples/conio/nacht-screen.asm
@@ -355,7 +355,7 @@ clrscr: {
jmp __b3
}
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
-// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
+// If onoff is 0, scrolling is disabled and the cursor instead moves to (0,0)
// The function returns the old scroll setting.
scroll: {
.const onoff = 0
diff --git a/src/test/ref/examples/conio/nacht-screen.log b/src/test/ref/examples/conio/nacht-screen.log
index dd25f9e37..d2e8ab5c9 100644
--- a/src/test/ref/examples/conio/nacht-screen.log
+++ b/src/test/ref/examples/conio/nacht-screen.log
@@ -3735,7 +3735,7 @@ clrscr: {
}
// scroll
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
-// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
+// If onoff is 0, scrolling is disabled and the cursor instead moves to (0,0)
// The function returns the old scroll setting.
scroll: {
.const onoff = 0
@@ -5558,7 +5558,7 @@ clrscr: {
}
// scroll
// If onoff is 1, scrolling is enabled when outputting past the end of the screen
-// If onoff is 1, scrolling is disabled and the cursor instead moves to (0,0)
+// If onoff is 0, scrolling is disabled and the cursor instead moves to (0,0)
// The function returns the old scroll setting.
scroll: {
.const onoff = 0