mirror of
https://github.com/open-goal/jak-project
synced 2026-06-14 22:29:25 -04:00
78cde74d5a
* update readme deps * replace assert * bump timeout * fix memory corruption in kernel * use unknown if level name is invalid
8 lines
128 B
C++
8 lines
128 B
C++
#include "soundcommon.h"
|
|
#include "common/util/Assert.h"
|
|
|
|
void PrintBankInfo(void* buffer) {
|
|
(void)buffer;
|
|
ASSERT(false);
|
|
}
|