fixed win32 gr_*_mode funcs that I forgot to change the arg type for (d1x r1.5)

This commit is contained in:
Bradley Bell 2004-05-20 18:48:44 +00:00
parent 4e39740519
commit af46f29a9a
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-05-20 Matthew Mueller <donut@dakotacom.net>
* arch/win32/win32.c: fixed win32 gr_*_mode funcs that I forgot to
change the arg type for (d1x r1.5)
2004-05-20 Victor Rachels <sekmu@tisiphone.dhs.org>
* arch/win32/digi.c: altsounds (d1x r1.6)

View file

@ -73,15 +73,15 @@ void arch_init()
int gr_installed = 0;
int gr_check_mode(int mode)
int gr_check_mode(u_int32_t mode)
{
if (mode == SM_320x200C)
if (mode == SM(320, 200))
return 0;
return 11;
}
int gr_set_mode(int mode)
int gr_set_mode(u_int32_t mode)
{
unsigned int w,h,t,r;