diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-08 08:07:45 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-05-08 08:07:45 +0000 |
| commit | 85cb5305c337de06976d1a3257864a3ee05ec50a (patch) | |
| tree | fff0cba7974c20c3c992e15cf08b037aca72f017 /libpcsxcore/misc.h | |
| parent | 0abc3643dd620150c4fec7f70cbd32b7d7177c97 (diff) | |
got rid of 0x80000000 flag in psxRegs.interrupt. such flag doesn't seem to exist in other emus and not likely in real hardware either.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@47625 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/misc.h')
| -rw-r--r-- | libpcsxcore/misc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libpcsxcore/misc.h b/libpcsxcore/misc.h index f589ec6c..7a0574f9 100644 --- a/libpcsxcore/misc.h +++ b/libpcsxcore/misc.h @@ -57,13 +57,13 @@ extern char CdromId[10]; extern char CdromLabel[33]; int LoadCdrom(); -int LoadCdromFile(char *filename, EXE_HEADER *head); +int LoadCdromFile(const char *filename, EXE_HEADER *head); int CheckCdrom(); -int Load(char *ExePath); +int Load(const char *ExePath); -int SaveState(char *file); -int LoadState(char *file); -int CheckState(char *file); +int SaveState(const char *file); +int LoadState(const char *file); +int CheckState(const char *file); int SendPcsxInfo(); int RecvPcsxInfo(); |
