Fixed a build error in the previous commit.

This commit is contained in:
Pietro Gagliardi 2014-02-15 16:27:47 -05:00
parent 16e561c1e3
commit e70c6f10c5
1 changed files with 1 additions and 1 deletions

View File

@ -94,5 +94,5 @@ func MsgBox(title string, textfmt string, args ...interface{}) {
// MsgBoxError displays a message box to the user with just an OK button and an icon indicating an error.
func MsgBoxError(title string, textfmt string, args ...interface{}) {
// TODO add an icon?
msgBox(fmt.Sprintf(textfmt, args...), title, _MB_OK | _MB_ERROR)
msgBox(fmt.Sprintf(textfmt, args...), title, _MB_OK | _MB_ICONERROR)
}