[nostalgia/player] Replace C header with C++ equivalent

This commit is contained in:
Gary Talent 2019-11-26 23:48:39 -06:00
parent 528f9be635
commit 1b08d0f851

View File

@ -43,7 +43,7 @@ int main() {
#else #else
#include <vector> #include <vector>
#include <stdio.h> #include <cstdio>
std::vector<uint8_t> loadFileBuff(const char *path) { std::vector<uint8_t> loadFileBuff(const char *path) {
auto file = fopen(path, "r"); auto file = fopen(path, "r");
@ -64,7 +64,7 @@ int main(int argc, const char **argv) {
if (argc > 1) { if (argc > 1) {
std::unique_ptr<ox::FileSystem> fs; std::unique_ptr<ox::FileSystem> fs;
std::vector<uint8_t> rom; std::vector<uint8_t> rom;
std::string path = argv[1]; const std::string path = argv[1];
const auto lastDot = path.find_last_of('.'); const auto lastDot = path.find_last_of('.');
const std::string fsExt = lastDot != std::string::npos ? path.substr(lastDot) : ""; const std::string fsExt = lastDot != std::string::npos ? path.substr(lastDot) : "";
if (fsExt == ".oxfs") { if (fsExt == ".oxfs") {