mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 15:28:58 -04:00
[jak3] Decomp for gkernel, gkernel-h, gstate, gstring (#3326)
I ported the kernel test from jak1/jak2 to jak 3, and it's passing!
This commit is contained in:
@@ -140,6 +140,15 @@ void runtime_with_kernel_jak2() {
|
||||
exec_runtime(game_options, argc, argv);
|
||||
}
|
||||
|
||||
void runtime_with_kernel_jak3() {
|
||||
constexpr int argc = 4;
|
||||
const char* argv[argc] = {"", "-fakeiso", "-debug", "-nosound"};
|
||||
GameLaunchOptions game_options;
|
||||
game_options.disable_display = true;
|
||||
game_options.game_version = GameVersion::Jak3;
|
||||
exec_runtime(game_options, argc, argv);
|
||||
}
|
||||
|
||||
void runtime_with_kernel_no_debug_segment() {
|
||||
constexpr int argc = 4;
|
||||
const char* argv[argc] = {"", "-fakeiso", "-debug-mem", "-nosound"};
|
||||
|
||||
Reference in New Issue
Block a user