Quick fixes
This commit is contained in:
parent
ffe177a50b
commit
4a05debccd
|
@ -24,4 +24,7 @@
|
||||||
*.m64 binary
|
*.m64 binary
|
||||||
*.png binary
|
*.png binary
|
||||||
*.aiff binary
|
*.aiff binary
|
||||||
*.ico binary
|
*.ico binary
|
||||||
|
*.mp3 binary
|
||||||
|
*.lvl binary
|
||||||
|
*.tex binary
|
|
@ -8,7 +8,7 @@ Run `./extract_assets.py --clean && make clean` or `make distclean` to clear ROM
|
||||||
|
|
||||||
[Instructions on how to play are available on the wiki.](https://github.com/djoslin0/sm64ex-coop/wiki/How-to-Play)
|
[Instructions on how to play are available on the wiki.](https://github.com/djoslin0/sm64ex-coop/wiki/How-to-Play)
|
||||||
|
|
||||||
- The easiest way to play is by using [coopdx-patcher](https://github.com/coop-compiler/coop-compiler/releases/latest/download/coop-compiler.exe)
|
- The easiest way to play is by using [coopdx-patcher](https://github.com/coop-deluxe/coopdx-patcher/releases/latest/download/coopdx-patcher.exe)
|
||||||
|
|
||||||
## Goal (accomplished)
|
## Goal (accomplished)
|
||||||
Create a mod for the PC port where multiple people can play together online.
|
Create a mod for the PC port where multiple people can play together online.
|
||||||
|
|
|
@ -745,7 +745,7 @@ void PrintError(const char *aFmt, Args... aArgs) {
|
||||||
printf(aFmt, aArgs...);
|
printf(aFmt, aArgs...);
|
||||||
printf("\r\n");
|
printf("\r\n");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
PrintConsole(aFmt, CONSOLE_MESSAGE_ERROR, aArgs...);
|
// PrintConsole(aFmt, CONSOLE_MESSAGE_ERROR, aArgs...);
|
||||||
}
|
}
|
||||||
#define PrintDataError(...) { \
|
#define PrintDataError(...) { \
|
||||||
if (aGfxData->mErrorCount == 0) Print(" ERROR!"); \
|
if (aGfxData->mErrorCount == 0) Print(" ERROR!"); \
|
||||||
|
|
Loading…
Reference in New Issue