Finished the proof-of-concept machine presets

This commit is contained in:
dingusdev
2020-08-31 22:20:47 -07:00
parent 4f59407cd0
commit 4ccfb5d527
3 changed files with 30 additions and 18 deletions
+3 -7
View File
@@ -181,13 +181,9 @@ int main(int argc, char** argv) {
if (machine_specified) {
if (machine_name.compare("PowerMacG3") == 0) {
if (establish_machine_presets(rom_file.c_str(), machine_name, sys_ram_size)) {
if (create_gossamer(sys_ram_size, gfx_mem)) {
goto bail;
}
} else {
LOG_F(ERROR, "Invalid Settings Specified");
return -1;
LOG_F(INFO, "Time to build up a machine");
if (establish_machine_presets(rom_file.c_str(), machine_name, sys_ram_size, gfx_mem)) {
goto bail;
}
}
else if (machine_name.compare("PowerMac6100") == 0) {