From: Mikko Rasa Date: Sun, 4 Dec 2022 20:16:34 +0000 (+0200) Subject: Cosmetic fixes X-Git-Url: http://git.tdb.fi/?p=libs%2Fgame.git;a=commitdiff_plain;h=e55354bb994276f83592397899bdf77926e8c769 Cosmetic fixes --- diff --git a/source/game/stage.cpp b/source/game/stage.cpp index f8dbd1a..7cad5bc 100644 --- a/source/game/stage.cpp +++ b/source/game/stage.cpp @@ -59,7 +59,7 @@ void Stage::tick(Time::TimeDelta dt) { { #ifdef DEBUG - AccessGuard::BlockForScope _block;; + AccessGuard::BlockForScope _block; #endif for(const auto &s: systems) { diff --git a/source/gameview/application.h b/source/gameview/application.h index dbbbbe8..0a2aea2 100644 --- a/source/gameview/application.h +++ b/source/gameview/application.h @@ -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;