summaryrefslogtreecommitdiff
path: root/libpcsxcore/misc.c
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-01-23 12:53:17 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-01-23 12:53:17 +0000
commitae09ad416b5720bf57c52e20d0522e4e481fe51a (patch)
treec575ef38c741d87a455115999745b35f7ba31b77 /libpcsxcore/misc.c
parent3c986f762c57b46bb7988d9210b2cab4ce5fb328 (diff)
downloadpcsxr-ae09ad416b5720bf57c52e20d0522e4e481fe51a.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@40662 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/misc.c')
-rw-r--r--libpcsxcore/misc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c
index 4c0e6cfd..30c7351d 100644
--- a/libpcsxcore/misc.c
+++ b/libpcsxcore/misc.c
@@ -54,9 +54,6 @@ struct iso_directory_record {
char name [1];
};
-#define btoi(b) ((b)/16*10 + (b)%16) /* BCD to u_char */
-#define itob(i) ((i)/10*16 + (i)%10) /* u_char to BCD */
-
void mmssdd( char *b, char *p )
{
int m, s, d;