Skip to content

Commit

Permalink
Change order to workaround Windows build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sago007 committed May 13, 2024
1 parent 1a6e435 commit be3946f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/code/BlockGame.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Source information and contacts persons can be found at
#ifndef BLOCKGAME_HPP
#define BLOCKGAME_HPP 1

#include "nlohmann/json.hpp"
#include "stats.h"
#include "common.h"
#include <deque>
#include "nlohmann/json.hpp"

#define NUMBEROFCHAINS 100
#define BLOCKWAIT 100000
Expand Down
2 changes: 1 addition & 1 deletion source/code/MenuSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Source information and contacts persons can be found at
*/


#include "BlockGame.hpp"
#include "MenuSystem.h"
#include "common.h"
#include "global.hpp"
#include "gamecontroller.h"
#include "BlockGame.hpp"
#include "menudef_themes.hpp"

static int oldmousex = 0;
Expand Down
5 changes: 3 additions & 2 deletions source/code/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Source information and contacts persons can be found at
===========================================================================
*/

#include "MenuSystem.h"
#include "replayhandler.hpp"
#include "common.h"
#include "global.hpp"
#include "scopeHelpers.hpp"
Expand All @@ -47,7 +49,6 @@ Source information and contacts persons can be found at
#include <SDL_image.h> //To load PNG images!
#include <physfs.h> //Abstract file system. To use containers
#include <vector>
#include "MenuSystem.h"
#include "puzzlehandler.hpp"
#include "stageclearhandler.hpp"
#include <memory>
Expand All @@ -56,7 +57,7 @@ Source information and contacts persons can be found at
#include "highscore.h" //Stores highscores
#include "ReadKeyboard.h" //Reads text from keyboard
#include "stats.h" //Saves general stats
#include "replayhandler.hpp"


#include "common.h"
#include "gamecontroller.h"
Expand Down

0 comments on commit be3946f

Please sign in to comment.