Skip to content

Commit

Permalink
Silence compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
joncampbell123 committed Feb 26, 2020
1 parent 8798c67 commit 4704d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ints/ems.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ static Bitu INT67_Handler(void) {
break;
case 0x4b: /* Get Handle Count */
reg_bx=0;
for (int i=0;i<EMM_MAX_HANDLES;i++) if (emm_handles[i].pages!=NULL_HANDLE) reg_bx++;
for (unsigned int i=0;i<EMM_MAX_HANDLES;i++) if (emm_handles[i].pages!=NULL_HANDLE) reg_bx++;
reg_ah=EMM_NO_ERROR;
break;
case 0x4c: /* Get Pages for one Handle */
Expand Down

0 comments on commit 4704d70

Please sign in to comment.