summaryrefslogtreecommitdiff
path: root/plugins/dfcdrom/cdr-linux.c
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-11-26 07:03:25 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-11-26 07:03:25 +0000
commitef6112349b45768da9e607cc3915b0c43048f3ce (patch)
tree91bb122af23f19a1e3528fdeb6619e3be6a56dd4 /plugins/dfcdrom/cdr-linux.c
parentf3af5576f8f564541fe9dc26d5df1c35bafa09d1 (diff)
downloadpcsxr-ef6112349b45768da9e607cc3915b0c43048f3ce.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@38251 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins/dfcdrom/cdr-linux.c')
-rw-r--r--plugins/dfcdrom/cdr-linux.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/dfcdrom/cdr-linux.c b/plugins/dfcdrom/cdr-linux.c
index 28fff7d0..e45217ca 100644
--- a/plugins/dfcdrom/cdr-linux.c
+++ b/plugins/dfcdrom/cdr-linux.c
@@ -19,16 +19,6 @@
#include "cdr.h"
-#ifdef ENABLE_NLS
-#include <libintl.h>
-#include <locale.h>
-#define _(x) gettext(x)
-#define N_(x) (x)
-#else
-#define _(x) (x)
-#define N_(x) (x)
-#endif
-
static inline int msf_to_lba(char m, char s, char f) {
return (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_MSF_OFFSET;
}