Fixed bug 3741 - more compatible initializers for arrays

Ozkan Sezer

An array defined like  int xPositions[] = {-1, 0, 1, w-1, w, w+1 };
errors with Open Watcom: it strictly wants constants.  Small patch
like below makes things more compatible.
This commit is contained in:
Sam Lantinga 2017-08-13 21:15:44 -07:00
parent 851e3a72b1
commit 6938caeac3
2 changed files with 16 additions and 3 deletions

View file

@ -46,12 +46,13 @@ button_messagebox(void *eventNumber)
"Custom MessageBox",
"This is a custom messagebox",
2,
buttons,
NULL,/* buttons */
NULL /* Default color scheme */
};
int button = -1;
int success = 0;
data.buttons = buttons;
if (eventNumber) {
data.message = "This is a custom messagebox from a background thread.";
}