diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-02 12:54:29 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-02 12:54:29 +0000 |
| commit | f03e0bee73f2ef6aa28ab4e2b242af5521e45d4d (patch) | |
| tree | c77f0d813e801465752ed0a812f22b2d4340db07 /src/bug_report.cpp | |
| parent | c5cd97dd8968f5f6ad4f130a68008beacda78b64 (diff) | |
| parent | c09d3e7bf4bef8eb492dc6b24c25a5ae00f77e63 (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/bug_report.cpp')
| -rw-r--r-- | src/bug_report.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bug_report.cpp b/src/bug_report.cpp index 85dfea1ec..5249cc3a4 100644 --- a/src/bug_report.cpp +++ b/src/bug_report.cpp @@ -47,6 +47,14 @@ void report_windows_product_type(DWORD ProductType) { gb_printf("Home Basic N");
break;
+ case PRODUCT_EDUCATION:
+ gb_printf("Education");
+ break;
+
+ case PRODUCT_EDUCATION_N:
+ gb_printf("Education N");
+ break;
+
case PRODUCT_BUSINESS:
gb_printf("Business");
break;
|