Skip to content

Commit

Permalink
VS2017 warning fix: size_t to unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
joncampbell123 committed Jul 21, 2019
1 parent 4fcf1e1 commit 4a02aa7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debug/debug.cpp
Expand Up @@ -4215,7 +4215,7 @@ static void DrawVariables(void) {
}

if (varchanges) {
unsigned int y = (i / 3u);
unsigned int y = (unsigned int)(i / 3u);
unsigned int x = (i % 3u) * 26u;
mvwprintw(dbg.win_var, (int)y, (int)x, dv->GetName());
mvwprintw(dbg.win_var, (int)y, ((int)x + DEBUG_VAR_BUF_LEN + 1) , buffer);
Expand Down
Binary file modified vs2015/freetype/objs/freetype.lib
Binary file not shown.

0 comments on commit 4a02aa7

Please sign in to comment.