summaryrefslogtreecommitdiff
path: root/pcr/neo6502/no_harmless_exit_fails.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/neo6502/no_harmless_exit_fails.patch')
-rw-r--r--pcr/neo6502/no_harmless_exit_fails.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pcr/neo6502/no_harmless_exit_fails.patch b/pcr/neo6502/no_harmless_exit_fails.patch
new file mode 100644
index 000000000..c7971c76a
--- /dev/null
+++ b/pcr/neo6502/no_harmless_exit_fails.patch
@@ -0,0 +1,13 @@
+diff --git a/basic/images/cvimg.py b/basic/images/cvimg.py
+index e0eb1125..d82ce95f 100644
+--- a/basic/images/cvimg.py
++++ b/basic/images/cvimg.py
+@@ -15,7 +15,7 @@ from gfxtext import *
+ if len(sys.argv) != 3:
+ print("python cvimg.zip <graphics file> <text file>")
+ print("python cvimg.zip <text file> <graphics file> ")
+- sys.exit(1)
++ sys.exit(0)
+
+ if sys.argv[1].endswith(".gfx"):
+ GraphicsConvert().toText(sys.argv[1],sys.argv[2])