diff options
| author | 2014-08-27 00:04:26 -0400 | |
|---|---|---|
| committer | 2014-08-30 23:23:33 -0400 | |
| commit | 738b88293ca82a7823d79d0406ac38019b7dec9c (patch) | |
| tree | 5b2f042cae820f5b8ad622731bc378247fac7788 /src/core/loader/loader.h | |
| parent | Threading: Fix thread starting to execute first instruction correctly. (diff) | |
| download | yuzu-738b88293ca82a7823d79d0406ac38019b7dec9c.tar.gz yuzu-738b88293ca82a7823d79d0406ac38019b7dec9c.tar.xz yuzu-738b88293ca82a7823d79d0406ac38019b7dec9c.zip | |
Loader: Added support for loading raw BIN executables.
- Useful for debugging homebrew
Qt: Updated GUI to support loading .bin files.
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 4ba10de52..68f843005 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -21,6 +21,7 @@ enum class FileType { | |||
| 21 | CXI, | 21 | CXI, |
| 22 | CIA, | 22 | CIA, |
| 23 | ELF, | 23 | ELF, |
| 24 | BIN, | ||
| 24 | }; | 25 | }; |
| 25 | 26 | ||
| 26 | /// Return type for functions in Loader namespace | 27 | /// Return type for functions in Loader namespace |