diff options
Diffstat (limited to 'src/NDS.cpp')
-rw-r--r-- | src/NDS.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/NDS.cpp b/src/NDS.cpp index 0a5afb4..44ca12b 100644 --- a/src/NDS.cpp +++ b/src/NDS.cpp @@ -328,6 +328,14 @@ void LoadROM(const char* path, bool direct) if (NDSCart::LoadROM(path, direct)) Running = true; + else + printf("Failed to load ROM %s\n", path); +} + +void LoadBIOS() +{ + Reset(); + Running = true; } |