diff options
| author | SND\notaz_cp <SND\notaz_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-01-09 01:16:21 +0000 |
|---|---|---|
| committer | SND\notaz_cp <SND\notaz_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-01-09 01:16:21 +0000 |
| commit | 52c169095fb38f452896b055b44430eb3b09d01d (patch) | |
| tree | d0e1ee2afd785df9310bbda5a09efd2b75189c38 /plugins | |
| parent | 0cff827e90063e45484846e4ba86908a2bb506e1 (diff) | |
| download | pcsxr-52c169095fb38f452896b055b44430eb3b09d01d.tar.gz | |
spu: fix one more 64bit issue
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82133 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/dfsound/stdafx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dfsound/stdafx.h b/plugins/dfsound/stdafx.h index 73f24975..37c4f539 100755 --- a/plugins/dfsound/stdafx.h +++ b/plugins/dfsound/stdafx.h @@ -55,9 +55,9 @@ #undef CALLBACK #define CALLBACK -#define DWORD unsigned long +#define DWORD unsigned int #define LOWORD(l) ((unsigned short)(l)) -#define HIWORD(l) ((unsigned short)(((unsigned long)(l) >> 16) & 0xFFFF)) +#define HIWORD(l) ((unsigned short)(((unsigned int)(l) >> 16) & 0xFFFF)) #ifndef INLINE #define INLINE inline |
