Re: [hatari-devel] Switching from SDL_types.h to inttypes.h ? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [hatari-devel] Switching from SDL_types.h to inttypes.h ?
- From: Thomas Huth <th.huth@xxxxxxxxx>
- Date: Fri, 30 Sep 2022 04:19:20 +0000
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1664511583; bh=zaVN6xXlEt8qCka1tEWV0biXm880VGYTF0llJTRXh9c=; h=Date:From:To:Subject:From; b=i37FOD3wyOZt4II7S/MsCxDbP/zg44RhgKuTUErNjhFQtY8tamCtuYyEig+yON+G1 x5NOSScORaBdqHGj4iNxy0InESLFRUjc1tx4DD3Jj/HTY/zz6YQS0S9QXdOPzonWBS 8oyLHrsVwWZcQ5IEiS38ZaJ0M7ui8BqIXxtAY8jLgrus2H3adq0brDdjdmPIzDlHGJ wOUEZ8NSCNxeVhJTeKcRhCNftKY42fT4Fe640xZxHHpgekPzKpm0SQrRUFoVxD5hJl gjqrOPK1DVkR02hIFA73XOKuOkB1jV6t2v5QQEuogqfxzXAgKGHUyvf2W9KPFwNVzw ZqVlTwS3oMSHg==
Am Fri, 30 Sep 2022 01:53:50 +0300
schrieb Eero Tamminen <oak@xxxxxxxxxxxxxx>:
> Hi,
>
> On 29.9.2022 23.56, Nicolas Pomarède wrote:
> > in tos.c, I see that some variables are still using SDL types Sint16 :
> >
> > typedef struct
> > {
> > uint16_t Version;
> > Sint16 Country;
> > const char *pszName;
> > int Flags;
> > uint32_t Address;
> > uint32_t OldData;
> > uint32_t Size;
> > const void *pNewData;
> > } TOS_PATCH;
> >
> > any reason for that, or is it sthg you forgot to change ?
>
> It's not the only place earlier type conversions missed in the files
> they touched. Attached patch lists rest of them.
>
> I'll push it unless there's a good reason not to...
Seems like I simply forgot to convert those - sorry for that. At least
it was not on purpose to keep them, so please go ahead and commit the patch
that converts the stragglers!
Thomas