diff --git a/include/helpers.hpp b/include/helpers.hpp index 9830cc88..1240232f 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -2,6 +2,7 @@ #include #include #include +#include #include #include #include @@ -36,7 +37,9 @@ namespace Helpers { std::cout << termcolor::on_red << "[FATAL] "; std::printf(fmt, args...); std::cout << termcolor::reset << "\n"; + std::cout << "Press any button to exit\n"; + getch(); exit(1); } diff --git a/src/core/PICA/shader_interpreter.cpp b/src/core/PICA/shader_interpreter.cpp index 7af284e3..76f80078 100644 --- a/src/core/PICA/shader_interpreter.cpp +++ b/src/core/PICA/shader_interpreter.cpp @@ -116,7 +116,7 @@ PICAShader::vec4f PICAShader::getSource(u32 source) { else if (source <= 0x7f) return floatUniforms[source - 0x20]; else { - Helpers::warn("[PICA] Unimplemented source value: %X\n", source); + //Helpers::warn("[PICA] Unimplemented source value: %X\n", source); return vec4f({ f24::zero(), f24::zero(), f24::zero(), f24::zero() }); } } diff --git a/src/main.cpp b/src/main.cpp index 9637e83f..927065fa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,11 +1,14 @@ #include "emulator.hpp" -int main (int argc, char *argv[]) { - Emulator emu; +int main(int argc, char *argv[]) { + if (argc < 2) { + Helpers::panic("No ROM provided. Usage: Alber.exe "); + } + Emulator emu; emu.initGraphicsContext(); - auto romPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "teapot.elf"); + auto romPath = std::filesystem::current_path() / argv[1]; if (!emu.loadROM(romPath)) { // For some reason just .c_str() doesn't show the proper path Helpers::panic("Failed to load ROM file: %s", romPath.string().c_str());