Skip to content

Commit

Permalink
Changes mode to 664
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Campos Nunes <[email protected]>
  • Loading branch information
rafaelcn committed Apr 22, 2017
1 parent f789181 commit 06811d9
Show file tree
Hide file tree
Showing 23 changed files with 3 additions and 5 deletions.
Empty file modified LICENSE.md
100755 → 100644
Empty file.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
Empty file modified PongGame.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified README.md
100755 → 100644
Empty file.
Empty file modified src/audio.cpp
100755 → 100644
Empty file.
Empty file modified src/audio.hpp
100755 → 100644
Empty file.
2 changes: 0 additions & 2 deletions src/debug.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Empty file modified src/font.cpp
100755 → 100644
Empty file.
Empty file modified src/font.hpp
100755 → 100644
Empty file.
Empty file modified src/font_manager.cpp
100755 → 100644
Empty file.
Empty file modified src/font_manager.hpp
100755 → 100644
Empty file.
Empty file modified src/game.hpp
100755 → 100644
Empty file.
Empty file modified src/main.cpp
100755 → 100644
Empty file.
Empty file modified src/paddle.cpp
100755 → 100644
Empty file.
Empty file modified src/paddle.hpp
100755 → 100644
Empty file.
Empty file modified src/random.cpp
100755 → 100644
Empty file.
Empty file modified src/random.hpp
100755 → 100644
Empty file.
Empty file modified src/texture.cpp
100755 → 100644
Empty file.
Empty file modified src/texture.hpp
100755 → 100644
Empty file.
Empty file modified src/vector2d.cpp
100755 → 100644
Empty file.
Empty file modified src/vector2d.hpp
100755 → 100644
Empty file.
Empty file modified src/window.cpp
100755 → 100644
Empty file.
Empty file modified src/window.hpp
100755 → 100644
Empty file.

0 comments on commit 06811d9

Please sign in to comment.