This is an automated email from the git hooks/post-receive script. thansen pushed a commit to branch master in repository aseprite.
commit e723426214bb76308d5be73126da92ad6350c32c Author: David Capello <[email protected]> Date: Wed Apr 20 11:25:03 2016 -0300 Minor fix at pen_win.h WTInfo is a macro defined as WTInfoW so anyway WTInfoW function was being used. --- src/pen/pen_win.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pen/pen_win.h b/src/pen/pen_win.h index 753cb7b..5314046 100644 --- a/src/pen/pen_win.h +++ b/src/pen/pen_win.h @@ -33,7 +33,7 @@ public: LOGCONTEXTW logctx; memset(&logctx, 0, sizeof(LOGCONTEXTW)); logctx.lcOptions |= CXO_SYSTEM; - UINT infoRes = WTInfo(WTI_DEFSYSCTX, 0, &logctx); + UINT infoRes = WTInfoW(WTI_DEFSYSCTX, 0, &logctx); ASSERT(infoRes == sizeof(LOGCONTEXTW)); ASSERT(logctx.lcOptions & CXO_SYSTEM); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

