summaryrefslogtreecommitdiff
path: root/libpcsxcore/cdrom.h
diff options
context:
space:
mode:
authorSND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-02-12 22:21:19 +0000
committerSND\ckain_cp <SND\ckain_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-02-12 22:21:19 +0000
commitde0b6f626f0fac7f4c35d92736b176f04300b933 (patch)
treedcfdc4eb1dc6db4c9c48f9017e2336ba1cdaf435 /libpcsxcore/cdrom.h
parent92337c525e17a76dc896a11c4ddd0f7595bd7bd0 (diff)
downloadpcsxr-de0b6f626f0fac7f4c35d92736b176f04300b933.tar.gz
Fixed MKT music resume issue #9524 by checking if CDDA mode is enabled when 0x1b command is issued. Refaktored CDROM debug logs.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82833 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/cdrom.h')
-rwxr-xr-xlibpcsxcore/cdrom.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libpcsxcore/cdrom.h b/libpcsxcore/cdrom.h
index 32275bda..31336c0c 100755
--- a/libpcsxcore/cdrom.h
+++ b/libpcsxcore/cdrom.h
@@ -30,6 +30,7 @@ extern "C" {
#include "plugins.h"
#include "psxmem.h"
#include "psxhw.h"
+#include "psxcommon.h"
#define btoi(b) ((b) / 16 * 10 + (b) % 16) /* BCD to u_char */
#define itob(i) ((i) / 10 * 16 + (i) % 10) /* u_char to BCD */