Indentation errors

This commit is contained in:
2025-03-19 02:07:35 +01:00
parent 4b37731a97
commit 4b7389da8d
7 changed files with 93 additions and 93 deletions

View File

@@ -24,17 +24,13 @@ class PSXSplash final : public psyqo::Application {
class MainScene final : public psyqo::Scene {
void frame() override;
uint8_t m_anim = 0;
bool m_direction = true;
eastl::array<psxsplash::GameObject> objects;
};
PSXSplash psxSplash;
MainScene mainScene;
}
} // namespace
void PSXSplash::prepare() {
psyqo::GPU::Configuration config;
@@ -51,8 +47,6 @@ void PSXSplash::createScene() {
pushScene(&mainScene);
}
void MainScene::frame() {
psxSplash.m_renderer.render(objects);
}
void MainScene::frame() { psxSplash.m_renderer.render(objects); }
int main() { return psxSplash.run(); }