![]() |
|
Another string related problem (*solved*) - Printable Version +- Boriel Basic Forum (https://forum.boriel.com) +-- Forum: Compilers and Computer Languages (https://forum.boriel.com/forumdisplay.php?fid=12) +--- Forum: ZX Basic Compiler (https://forum.boriel.com/forumdisplay.php?fid=11) +---- Forum: Bug Reports (https://forum.boriel.com/forumdisplay.php?fid=15) +---- Thread: Another string related problem (*solved*) (/showthread.php?tid=588) |
Another string related problem (*solved*) - LCD - 2014-05-10 Let me demonstrate this nasty bug... Code: sub printerPutString(x as ubyte,y as ubyte,attribute as ubyte,char$ as string)This does not work correctly, but it *should* work. print len strg$ is 15, but in procedure the char$ length is calculated with 0 lchars. It works if I change the code to this: Code: sub printerPutString(x as ubyte,y as ubyte,attribute as ubyte,char$ as string)Re: Another string related problem - LCD - 2014-05-20 It looks like it is a problem with strings and SUB... Re: Another string related problem - boriel - 2014-05-20 LCD Wrote:It looks like it is a problem with strings and SUB...I see. Probably local / parameter string var$. Will check it. Thanks
Re: Another string related problem - LCD - 2014-05-20 boriel Wrote:No problem. Thank you for looking into it.LCD Wrote:It looks like it is a problem with strings and SUB...I see. Probably local / parameter string var$. Will check it. Thanks Re: Another string related problem - boriel - 2014-06-08 LCD Wrote:I think It's fixed. Please, download Version 1.4.0-s1876, and tell me if it works.boriel Wrote:No problem. Thank you for looking into it.LCD Wrote:It looks like it is a problem with strings and SUB...I see. Probably local / parameter string var$. Will check it. Thanks Re: Another string related problem - LCD - 2014-06-09 boriel Wrote:I think It's fixed. Please, download Version 1.4.0-s1876, and tell me if it works.I'm telling you that it works. Thank you! |