diff options
| author | 2015-09-02 08:56:38 -0400 | |
|---|---|---|
| committer | 2015-10-04 11:16:59 -0400 | |
| commit | 31dee93e849d79a91f280faf16941806e3cb3c6b (patch) | |
| tree | 22f64217b38dfa38b25a772f9fc5a9b025e1cbd6 /src/core/settings.h | |
| parent | OS X build uploading: auto-confirm SSH host key (diff) | |
| download | yuzu-31dee93e849d79a91f280faf16941806e3cb3c6b.tar.gz yuzu-31dee93e849d79a91f280faf16941806e3cb3c6b.tar.xz yuzu-31dee93e849d79a91f280faf16941806e3cb3c6b.zip | |
Implement gdbstub
Diffstat (limited to 'src/core/settings.h')
| -rw-r--r-- | src/core/settings.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 0b05e5bee..97ddcdff9 100644 --- a/src/core/settings.h +++ b/src/core/settings.h | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | #include <string> | 7 | #include <string> |
| 8 | #include <array> | 8 | #include <array> |
| 9 | #include <common/file_util.h> | ||
| 9 | 10 | ||
| 10 | namespace Settings { | 11 | namespace Settings { |
| 11 | 12 | ||
| @@ -60,6 +61,10 @@ struct Values { | |||
| 60 | float bg_blue; | 61 | float bg_blue; |
| 61 | 62 | ||
| 62 | std::string log_filter; | 63 | std::string log_filter; |
| 64 | |||
| 65 | // Debugging | ||
| 66 | bool use_gdbstub; | ||
| 67 | u16 gdbstub_port; | ||
| 63 | } extern values; | 68 | } extern values; |
| 64 | 69 | ||
| 65 | } | 70 | } |