Author Topic: Games with older SDL and FSLIB  (Read 94765 times)

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5647
  • Karma: +144/-1
    • View Profile
Re: Games with older SDL and FSLIB
« Reply #150 on: January 10, 2026, 03:56:19 am »
So removed the inline statements on the functions that were missing. All errors are gone except,
Code: [Select]
sdl.c: In function 'Pause':
sdl.c:892:9: warning: variable 'Pt' set but not used [-Wunused-but-set-variable]

  892 |   POINT Pt;
         |             ^~

Which causes errors related to Pt.x and Pt.y if commented out.
I did have those other warnings previously even though the build succeeded so I figure good to fix the warnings anyways and removing some inlines shouldn't matter on most all hardware.
Here's the current binary. Martin, if no one comments with a better way fix, should use this binary as it corresponds to the source changes I'll push tomorrow after renewing my password token.
« Last Edit: January 10, 2026, 03:57:54 am by Dave Yeo »

Martin Iturbide

  • OS2World NewsMaster
  • Global Moderator
  • Hero Member
  • *****
  • Posts: 5588
  • Karma: +50/-1
  • Your Friend Wil Declares...
    • View Profile
    • Martin's Personal Blog
Re: Games with older SDL and FSLIB
« Reply #151 on: January 10, 2026, 03:27:27 pm »
Good, It is working fine.

I will upload it to hobbes this way.

Thanks.
« Last Edit: January 10, 2026, 05:13:08 pm by Martin Iturbide »
Martin Iturbide
OS2World NewsMaster
... just share the dream.

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5647
  • Karma: +144/-1
    • View Profile
Re: Games with older SDL and FSLIB
« Reply #152 on: January 10, 2026, 04:03:10 pm »
Sure. There's no SDLIMAGE requirement, and perhaps a link to the OS2world repository.
Edit: Pushed my changes
« Last Edit: January 10, 2026, 04:20:29 pm by Dave Yeo »

Martin Iturbide

  • OS2World NewsMaster
  • Global Moderator
  • Hero Member
  • *****
  • Posts: 5588
  • Karma: +50/-1
  • Your Friend Wil Declares...
    • View Profile
    • Martin's Personal Blog
Re: Games with older SDL and FSLIB
« Reply #153 on: January 10, 2026, 05:14:15 pm »
Thanks Dave.

This is it (attached).

Can you please now check SDLZombies?
-- https://github.com/OSSGames/GAME-SDL-ACTION-sdlZombies

Regards
Martin Iturbide
OS2World NewsMaster
... just share the dream.

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5647
  • Karma: +144/-1
    • View Profile
Re: Games with older SDL and FSLIB
« Reply #154 on: January 10, 2026, 06:06:44 pm »
SDLroids looks good. I'll look at the sdlZombies later

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5647
  • Karma: +144/-1
    • View Profile
Re: Games with older SDL and FSLIB
« Reply #155 on: Today at 04:42:49 am »
Looking at sdlZombies, some stuff seems to be missing.
Code: [Select]
configure.in:80: error: required file 'data/sounds/Makefile.in' not found
configure.in:80: error: required file 'data/zombies/Makefile.in' not found
configure.in:80: error: required file 'data/environ/Makefile.in' not found
configure.in:80: error: required file 'data/menu/Makefile.in' not found
configure.in:80: error: required file 'data/menu_opt/Makefile.in' not found
data/Makefile.am:1: error: required directory data/sounds does not exist
data/Makefile.am:1: error: required directory data/zombies does not exist
data/Makefile.am:1: error: required directory data/environ does not exist
data/Makefile.am:1: error: required directory data/menu does not exist
data/Makefile.am:1: error: required directory data/menu_opt does not exist

This seems to be complete, http://hocwp.free.fr/sdlzombies-1.0.0.tar.gz
Now to start over :)

Dave Yeo

  • Hero Member
  • *****
  • Posts: 5647
  • Karma: +144/-1
    • View Profile
Re: Games with older SDL and FSLIB
« Reply #156 on: Today at 05:01:56 am »
Please create a clone of sdlZombies in OS2World so I can push my work as I go