coop-deluxe / sm64coopdx

An official continuation of https://github.com/djoslin0/sm64ex-coop on sm64coopdx for the enhancements and progress it already has.
https://sm64coopdx.com
286 stars 41 forks source link

Third Issue with Compilation #193

Closed ThePlayerRolo closed 1 month ago

ThePlayerRolo commented 1 month ago

When trying to compile, 10 errors having to do with compiling src/pc/djui/djui_panel_mod_menu.c show up Expected to FINALLY COMPILE THIS

Screen Shot 2024-07-10 at 11 26 38 AM

EmeraldLoc commented 1 month ago

This was fixed in the dev repo. Copy that file from the dev repo to this one.

ThePlayerRolo commented 1 month ago

ok

ThePlayerRolo commented 1 month ago

um there is still an error: src/pc/djui/djui_panel_mod_menu.c:90:35: error: label at end of compound statement: expected statement case MOD_MENU_ELEMENT_MAX:

EmeraldLoc commented 1 month ago

Must be a old compiler thing, make it this:

case MOD_MENU_ELEMENT_MAX: {
    break;
}
ThePlayerRolo commented 1 month ago

in ternimal or where?

EmeraldLoc commented 1 month ago

The c file, replace case MOD_MENU_ELEMENT_MAX: with the stuff I gave, that should fix that.

ThePlayerRolo commented 1 month ago

New errors: Screen Shot 2024-07-10 at 11 41 47 AM