Mercurial > msvpvf
changeset 20:bf872a9c70d9
Add curly brackets around our switch statement so it actually works
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Thu, 07 Apr 2022 19:42:34 -0400 |
parents | 6d14538a109e |
children | cb2a28cef9cc 4c5f3d8d31e1 |
files | src/gui.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gui.c Thu Apr 07 19:30:53 2022 -0400 +++ b/src/gui.c Thu Apr 07 19:42:34 2022 -0400 @@ -128,7 +128,7 @@ ofn.lpstrFile[0] = '\0'; ofn.nMaxFile = 256; ofn.lpstrFilter = "Movie Studio project files\0*.vf\0VEGAS Pro project files\0*.veg\0All files\0*.*\0"; - ofn.nFilterIndex = type+1; + ofn.nFilterIndex = (int)type+1; GetSaveFileName(&ofn); @@ -139,17 +139,19 @@ return; } - switch (type) { - case vf: + switch ((int)type) { + case vf: { unsigned char magic[] = {0xEF, 0x29, 0xC4, 0x46, 0x4A, 0x90, 0xD2, 0x11, 0x87, 0x22, 0x00, 0xC0, 0x4F, 0x8E, 0xDB, 0x8A}; set_data(magic, version, output); break; - default: + } + default: { unsigned char magic[] = {0xF6, 0x1B, 0x3C, 0x53, 0x35, 0xD6, 0xF3, 0x43, 0x8A, 0x90, 0x64, 0xB8, 0x87, 0x23, 0x1F, 0x7F}; set_data(magic, version, output); break; + } } fclose(output);