MorsGames / sm64plus

A fork of sm64-port that focuses on QoL improvements and customizability.
https://mfgg.net/index.php?act=resdb&param=02&c=2&id=38190
456 stars 33 forks source link

Fix non-portable printf call in Makefile #24

Closed ioncorimenia closed 3 years ago

ioncorimenia commented 3 years ago

Posix printf does not have support for hexadecimal escapes, only for octal ones. This changes it to use to more portable version. The old version did work on Manjaro because it ships with a fancier version of printf, but not on other distros like Debian. Closes #22.

cgaldieri commented 3 years ago

Thank you

ioncorimenia commented 3 years ago

@cgaldieri Can you close the other PR? This is a proper-er fix.

cgaldieri commented 3 years ago

i will... closing!

MorsGames commented 3 years ago

I'll give this a check later today and will merge if there are no issues with it.