libretro / dosbox-libretro

Port of DOSBox (upstream) to the libretro API.
GNU General Public License v2.0
61 stars 40 forks source link

Mouse improvements #82

Closed ehmry closed 6 years ago

inactive123 commented 6 years ago

OK, regarding mmap, it might be prudent to come up with a HAVE_MMAP ifdef since some targets such as game consoles might not have mmap support at all. Or will dynarecs simply not be compiled in for those targets? If so, we might be able to do without ifdefs then.

ehmry commented 6 years ago

Mmap has been in POSIX since 1992, so I would think it would be ubiquitous, but I could be wrong.

inactive123 commented 6 years ago

I can definitely tell you from personal experience it is not ubiquitous at all on these console SDKs. You cannot assume its presence.

ehmry commented 6 years ago

TIL. Now with HAVE_MMAP.

inactive123 commented 6 years ago

OK, thanks.