Oxygen Basic
Programming => Bugs & Feature Requests => Topic started by: Peter on August 31, 2011, 11:20:57 AM
-
Hi Charles,
This is a bit strange.
InitSound: sys_mode=4
with this position you cannot hear the sound!
This will not initialised.
If you jump out of an 'elseif' into a 'Sub' and come back, the program crashes.
for example: only pseudo code.
sub maingame()
while key(vk_space)=0
print "Huhu"
wend
end sub
sub simple()
if key(vk_return) and cury=100
do nothing
elseif key(vk_return) and cury=112
maingame
elseif kye(vk_return) and cury=124
exit sub 'or return'
endif
end sub
Done
my solution:
WinEnd: ExitProcess 0, but I have not any FreeLibrary!
-
InitSound: sys_mode=4
with this position you cannot hear the sound!
I think InitSound: is being interpreted as a label.
You can either place a space between the name and the colon InitSound :
or insert a pair of brackets InitSound():
I will check the parsing sequence to see if this misinterpretation can be avoided.
The pseudocode looks okay.
Equivalent test:
sub f()
'======
do
print "ok"
exit do
end do
end sub
sub g()
'======
sys a=3
if a=1
'
elseif a=2
'
elseif a=3
f : a=0
exit sub
end if
end sub
g
Charles