summaryrefslogtreecommitdiff
path: root/libpcsxcore/misc.c
diff options
context:
space:
mode:
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;