bool gamerunning = true;
while (gamerunning)
while (SDL_PollEvent(&event))
if (event.type == SDL_QUIT)
gameRunning = false;
这就是我要做的,在第五行我得到这个错误:
“gameRunning”未在此作用域中声明
有人知道这个问题吗?
最佳答案
这将修复错误:
bool gamerunning = true;
while (gamerunning)
{
while (SDL_PollEvent(&event))
{
if (event.type == SDL_QUIT)
{
gamerunning = false; // <--- fixed spelling
}
}
}
编译器不需要大括号。但是,如果有多个控制流语句在一行中,则它可以提高可读性。唯一的错误是
gamerunning
中的大写字母R。