From 59126078c7a5a9cac88dcb5b209465010142b73d Mon Sep 17 00:00:00 2001 From: d0k3 Date: Mon, 4 Apr 2016 21:52:42 +0200 Subject: [PATCH] Removed unused defines from common.h --- source/common.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/common.h b/source/common.h index 8a0034b..3a2acd0 100644 --- a/source/common.h +++ b/source/common.h @@ -37,11 +37,6 @@ #define getle64(d) (*((u64*) (d))) #define align(v,a) \ (((v) % (a)) ? ((v) + (a) - ((v) % (a))) : (v)) - -// work files / directories -#define GAME_DIR "/D9Game" -#define WORK_DIR "/Decrypt9" -#define LOG_FILE "Decrypt9.log" inline u32 strchrcount(const char* str, char symbol) { u32 count = 0;