mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
f0ed046a98
When encountering a non-empty statement inside braces, emit "do" ... "end". git-svn-id: https://svn.eduke32.com/eduke32@3840 1a8010ca-5511-0410-912e-c29ae57300e0
16 lines
285 B
Text
16 lines
285 B
Text
|
|
actor 1890 1
|
|
// The following "else { if" must not be translated to an "elseif".
|
|
ifcount 1 nullop else
|
|
{
|
|
ifvare 0 0
|
|
spawn 1
|
|
else
|
|
spawn 2
|
|
|
|
ifvare 1 1
|
|
spawn 3
|
|
else ifvare 1 2
|
|
spawn 4
|
|
}
|
|
enda
|