Mercurial > msvpvf
changeset 28:1b8d066e55ae
actually define our enum properly...
| author | Paper <37962225+mrpapersonic@users.noreply.github.com> | 
|---|---|
| date | Thu, 07 Apr 2022 23:54:24 -0400 | 
| parents | 7103ac60ebdc | 
| children | 61b9a9ba7fee | 
| files | src/gui.c | 
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] | 
line wrap: on
 line diff
--- a/src/gui.c Thu Apr 07 23:48:10 2022 -0400 +++ b/src/gui.c Thu Apr 07 23:54:24 2022 -0400 @@ -34,10 +34,10 @@ HWND hWndListBox, hWndComboBox; int16_t version = 13; -static enum type { +enum types { vf, veg -}; +} type; char* file_name = " "; void set_data(unsigned char magic[], uint16_t version, FILE* target) {
