Linux difficulties compared to Windows - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://staging.qb64phoenix.com/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://staging.qb64phoenix.com/forumdisplay.php?fid=10) +---- Thread: Linux difficulties compared to Windows (/showthread.php?tid=116) |
Linux difficulties compared to Windows - bplus - 04-22-2022 I, bplus, am newbie to Linux the Mint Cinnamon Distro which is a subset of Ubuntu but with more Windows like appearance if I read my book right. Anyway I am testing the Battleship app Johnno and I put together, everything is fine until I am halfway through a game with all effects going (mostly just sound files playing) and the thing just ups and quits, no messages, nothing?! When I play without effects it's fine and I can run a whole game to win or lose. I think there were some wav files and possibly those are Windows preferred? But why would they work for awhile and then not? Another goofy thing: I am testing a graphics program, a mod of Kens's spiral flower and it just automatically says compiler error see log... I check and it's blank, over and over? I'm thinking there is some invisible character that doesn't show in IDE because I commented out the whole program and still get compiler error message. Weird! And another thing: I am testing old Spinners program, that takes a screenshot of desktop and then displays that with spiders crawling all over... oh wait the Wiki did say taking screen shots does not work in Linux, never mind. Windows has no problem with this, IDE in Linux is happy but the compiler gives me error even when I comment more and more until all of the code: Code: (Select All) _Title "b+ Makeover #2 of Ken's Rotating Flower" RE: Linux difficulties compared to Windows - bplus - 04-24-2022 One mystery solved! Code: (Select All) _Title "b+ Makeover #2 of Ken's Rotating Flower" Look at the title, I saved the file under the same name and apparently Linux doesn't like ' I don't think windows is too happy with it either? but it let me compile. That's why when I commented out all the code, it still wouldn't compile. RE: Linux difficulties compared to Windows - Pete - 04-24-2022 (04-24-2022, 02:47 AM)bplus Wrote: One mystery solved! How about: Code: (Select All) _Title "b" + CHR$(43)+ " Makeover " +CHR$(35) + "2 of Ken's Rotating Flower" Do you mean it won't compile in Linux, or won't save, or both? Pete RE: Linux difficulties compared to Windows - bplus - 04-24-2022 It was saving and acceptable to the IDE but when I went to compile the code in Linux, it rejected the file name. BTW there was no error message in the Log. |