]> git.tdb.fi Git - libs/game.git/commitdiff
Cosmetic fixes
authorMikko Rasa <tdb@tdb.fi>
Sun, 4 Dec 2022 20:16:34 +0000 (22:16 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 4 Dec 2022 20:20:22 +0000 (22:20 +0200)
source/game/stage.cpp
source/gameview/application.h

index f8dbd1a5b4fa21074b81d1f0d229d6f8e6ffe026..7cad5bc250873b9e8c265ce3aacb617a9c8abcdb 100644 (file)
@@ -59,7 +59,7 @@ void Stage::tick(Time::TimeDelta dt)
 {
        {
 #ifdef DEBUG
-               AccessGuard::BlockForScope _block;;
+               AccessGuard::BlockForScope _block;
 #endif
                for(const auto &s: systems)
                {
index dbbbbe843815c588660ebb00f40b4f9be2bd80b9..0a2aea2923f3d033f9f602eb209629255bece0cb 100644 (file)
@@ -19,11 +19,11 @@ public:
        using ResourcesType = R;
 
 protected:
-       Msp::Graphics::Display display;
-       Msp::Graphics::Window window;
+       Graphics::Display display;
+       Graphics::Window window;
        GL::Device gl_device;
        ResourcesType resources;
-       Msp::Game::Director director;
+       Game::Director director;
        GL::WindowView gl_view;
        Presenter presenter;
        PlayerInput player_input;