mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
UX improvements for preview build
This commit is contained in:
parent
5bcc35dfc8
commit
b51a1aae5e
3 changed files with 10 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
||||||
#include <climits>
|
#include <climits>
|
||||||
#include <cstdarg>
|
#include <cstdarg>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <conio.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -36,7 +37,9 @@ namespace Helpers {
|
||||||
std::cout << termcolor::on_red << "[FATAL] ";
|
std::cout << termcolor::on_red << "[FATAL] ";
|
||||||
std::printf(fmt, args...);
|
std::printf(fmt, args...);
|
||||||
std::cout << termcolor::reset << "\n";
|
std::cout << termcolor::reset << "\n";
|
||||||
|
std::cout << "Press any button to exit\n";
|
||||||
|
|
||||||
|
getch();
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,7 @@ PICAShader::vec4f PICAShader::getSource(u32 source) {
|
||||||
else if (source <= 0x7f)
|
else if (source <= 0x7f)
|
||||||
return floatUniforms[source - 0x20];
|
return floatUniforms[source - 0x20];
|
||||||
else {
|
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() });
|
return vec4f({ f24::zero(), f24::zero(), f24::zero(), f24::zero() });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,14 @@
|
||||||
#include "emulator.hpp"
|
#include "emulator.hpp"
|
||||||
|
|
||||||
int main (int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
Emulator emu;
|
if (argc < 2) {
|
||||||
|
Helpers::panic("No ROM provided. Usage: Alber.exe <ROM here>");
|
||||||
|
}
|
||||||
|
|
||||||
|
Emulator emu;
|
||||||
emu.initGraphicsContext();
|
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)) {
|
if (!emu.loadROM(romPath)) {
|
||||||
// For some reason just .c_str() doesn't show the proper path
|
// For some reason just .c_str() doesn't show the proper path
|
||||||
Helpers::panic("Failed to load ROM file: %s", romPath.string().c_str());
|
Helpers::panic("Failed to load ROM file: %s", romPath.string().c_str());
|
||||||
|
|
Loading…
Add table
Reference in a new issue