[nostalgia] Switch Studio to PassThroughFS

This commit is contained in:
2019-01-15 22:33:13 -06:00
parent e5c5c0da43
commit af0e24d9bf
26 changed files with 159 additions and 107 deletions

View File

@@ -22,6 +22,8 @@ target_link_libraries(
NostalgiaCore
OxFS
OxStd
OxTrace
OxMetalClaw
)
add_custom_target("nostalgia.bin")

View File

@@ -13,7 +13,7 @@ using namespace nostalgia::core;
using namespace nostalgia::world;
int main() {
ox::FileSystem32 fs(loadRom(), false);
ox::FileSystem32 fs(ox::FileStore32(loadRom(), 33554432)); // 32 MB
Context ctx;
init(&ctx);
ctx.rom = &fs;