In the most games there is a central while() loop which goes on all the time until the user cancelles.
So, the while condition has always to be true. Different developers use different expressions; there are
1 2 3 4 5
while(1)
while(true)
while(1==1)
for (;;)
for(;true;)