n64decomp / mk64

A speedy Mario Kart 64 decompilation, brought to you by the cousin of a tame racing driver.
629 stars 72 forks source link

Remove inc from linked file names #593

Closed MegaMech closed 6 months ago

MegaMech commented 6 months ago

Fixed warnings in actor_types.h enums by removing comma at end of list.

This PR removes .inc. from files that are linked in mk64.ld.

The idea now is that .inc.c only applies to files that are included in another C file like so:

var myVar[] = {
    #include "my_file.inc.c"
}