1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00

Add inline directives to gameloop(), deltaloop(), fixedloop()

This is to make sure that there's no cost splitting up the game loop
into several different functions to increase code readability.
This commit is contained in:
Misa 2020-06-15 12:54:08 -07:00 committed by Ethan Lee
parent 7640f8cc8f
commit 0cb21f407e

View File

@ -63,9 +63,9 @@ volatile Uint32 f_time = 0;
volatile Uint32 f_timePrev = 0;
volatile Uint32 f_accumulator = 0;
void gameloop();
void deltaloop();
void fixedloop();
void inline gameloop();
void inline deltaloop();
void inline fixedloop();
int main(int argc, char *argv[])
{
@ -339,7 +339,7 @@ int main(int argc, char *argv[])
return 0;
}
void gameloop()
void inline gameloop()
{
while ((game.over30mode || f_accumulator >= 34) && !key.quitProgram)
{
@ -359,7 +359,7 @@ void gameloop()
}
}
void deltaloop()
void inline deltaloop()
{
//timestep limit to 30
const float rawdeltatime = static_cast<float>(time_ - timePrev);
@ -427,7 +427,7 @@ void deltaloop()
}
}
void fixedloop()
void inline fixedloop()
{
game.infocus = key.isActive;