From 06811d95878706ac4b19b47c2395669e92837261 Mon Sep 17 00:00:00 2001 From: Rafael Campos Nunes Date: Sat, 22 Apr 2017 17:04:48 -0300 Subject: [PATCH] Changes mode to 664 Signed-off-by: Rafael Campos Nunes --- LICENSE.md | 0 Makefile | 6 +++--- PongGame.png | Bin README.md | 0 src/audio.cpp | 0 src/audio.hpp | 0 src/debug.hpp | 2 -- src/font.cpp | 0 src/font.hpp | 0 src/font_manager.cpp | 0 src/font_manager.hpp | 0 src/game.hpp | 0 src/main.cpp | 0 src/paddle.cpp | 0 src/paddle.hpp | 0 src/random.cpp | 0 src/random.hpp | 0 src/texture.cpp | 0 src/texture.hpp | 0 src/vector2d.cpp | 0 src/vector2d.hpp | 0 src/window.cpp | 0 src/window.hpp | 0 23 files changed, 3 insertions(+), 5 deletions(-) mode change 100755 => 100644 LICENSE.md mode change 100755 => 100644 PongGame.png mode change 100755 => 100644 README.md mode change 100755 => 100644 src/audio.cpp mode change 100755 => 100644 src/audio.hpp mode change 100755 => 100644 src/font.cpp mode change 100755 => 100644 src/font.hpp mode change 100755 => 100644 src/font_manager.cpp mode change 100755 => 100644 src/font_manager.hpp mode change 100755 => 100644 src/game.hpp mode change 100755 => 100644 src/main.cpp mode change 100755 => 100644 src/paddle.cpp mode change 100755 => 100644 src/paddle.hpp mode change 100755 => 100644 src/random.cpp mode change 100755 => 100644 src/random.hpp mode change 100755 => 100644 src/texture.cpp mode change 100755 => 100644 src/texture.hpp mode change 100755 => 100644 src/vector2d.cpp mode change 100755 => 100644 src/vector2d.hpp mode change 100755 => 100644 src/window.cpp mode change 100755 => 100644 src/window.hpp diff --git a/LICENSE.md b/LICENSE.md old mode 100755 new mode 100644 diff --git a/Makefile b/Makefile index 386d2b5..093ff3c 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,13 @@ CXX = g++ # Libs that are used to compile the game LIBS = -lSDL2 -lSDL2_mixer -lSDL2_image -lSDL2_ttf -# Flag used by the compiler +# Flag used by the compiler CXXFLAGS = -Wall -Wextra -O3 -std=c++11 # Flag used to generate a lower optimized version CXXFLAGS_D = -Wall -Wextra -O1 -std=c++11 # Name of the executable EXEC = PongGame -# Build directories +# Build directories RELEASE_BUILD = out/linux/release-build DEBUG_BUILD = out/linux/debug-build OBJ_DIR = obj @@ -27,7 +27,7 @@ OBJECTS := $(addprefix $(RELEASE_BUILD)/$(OBJ_DIR)/, $(OBJECTS)) OBJECTS_D = $(OBJECTS) # Without the line below, OBJECTS_D looks like out/debug-build/obj/out/rele... -OBJECTS_D := $(notdir $(OBJECTS_D)) +OBJECTS_D := $(notdir $(OBJECTS_D)) OBJECTS_D := $(addprefix $(DEBUG_BUILD)/$(OBJ_DIR)/, $(OBJECTS_D)) release: diff --git a/PongGame.png b/PongGame.png old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/src/audio.cpp b/src/audio.cpp old mode 100755 new mode 100644 diff --git a/src/audio.hpp b/src/audio.hpp old mode 100755 new mode 100644 diff --git a/src/debug.hpp b/src/debug.hpp index 465df91..44b8174 100644 --- a/src/debug.hpp +++ b/src/debug.hpp @@ -21,8 +21,6 @@ */ class Debug { public: - - /** * @brief log The default log, it prints args on the stdout. * @param args The arguments to be printed on the terminal. diff --git a/src/font.cpp b/src/font.cpp old mode 100755 new mode 100644 diff --git a/src/font.hpp b/src/font.hpp old mode 100755 new mode 100644 diff --git a/src/font_manager.cpp b/src/font_manager.cpp old mode 100755 new mode 100644 diff --git a/src/font_manager.hpp b/src/font_manager.hpp old mode 100755 new mode 100644 diff --git a/src/game.hpp b/src/game.hpp old mode 100755 new mode 100644 diff --git a/src/main.cpp b/src/main.cpp old mode 100755 new mode 100644 diff --git a/src/paddle.cpp b/src/paddle.cpp old mode 100755 new mode 100644 diff --git a/src/paddle.hpp b/src/paddle.hpp old mode 100755 new mode 100644 diff --git a/src/random.cpp b/src/random.cpp old mode 100755 new mode 100644 diff --git a/src/random.hpp b/src/random.hpp old mode 100755 new mode 100644 diff --git a/src/texture.cpp b/src/texture.cpp old mode 100755 new mode 100644 diff --git a/src/texture.hpp b/src/texture.hpp old mode 100755 new mode 100644 diff --git a/src/vector2d.cpp b/src/vector2d.cpp old mode 100755 new mode 100644 diff --git a/src/vector2d.hpp b/src/vector2d.hpp old mode 100755 new mode 100644 diff --git a/src/window.cpp b/src/window.cpp old mode 100755 new mode 100644 diff --git a/src/window.hpp b/src/window.hpp old mode 100755 new mode 100644