Commit 908c2d44 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

vbscript: The first day of the week should default to Sunday, not the system default.

parent 368bc8aa
......@@ -1426,7 +1426,7 @@ static HRESULT Global_FormatDateTime(vbdisp_t *This, VARIANT *arg, unsigned args
static HRESULT Global_WeekdayName(vbdisp_t *This, VARIANT *args, unsigned args_cnt, VARIANT *res)
{
int weekday, first_day = 0, abbrev = 0;
int weekday, first_day = 1, abbrev = 0;
BSTR ret;
HRESULT hres;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment