Skip to content

Commit

Permalink
Disable debug mode
Browse files Browse the repository at this point in the history
Disable debug mode and visual leak checker
  • Loading branch information
toniSoftiberia committed Jan 29, 2016
1 parent b0583b8 commit 597dd19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <stdlib.h>
#include "Application.h"
#include "Globals.h"
#include <vld.h>
//#include <vld.h>

#include "SDL/include/SDL.h"
#pragma comment( lib, "SDL/libx86/SDL2.lib" )
Expand Down
2 changes: 1 addition & 1 deletion ModuleCollision.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ struct SDL_Texture;

ModuleCollision::ModuleCollision(bool start_enabled) :
Module(start_enabled),
debug_mode(true)
debug_mode(false)
{
for (int i = 0; i < COL_MAX; i++)
for (int j = 0; j < COL_MAX; j++)
Expand Down

0 comments on commit 597dd19

Please sign in to comment.