Skip to content

Commit

Permalink
Merge pull request #4 from tormodvolden/master
Browse files Browse the repository at this point in the history
Correct parameter index for "wait" in amx_putcolumn()
  • Loading branch information
PetteriAimonen committed Oct 7, 2012
2 parents 15358ee + 10e007e commit 3c97ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/amx_draw.c
Expand Up @@ -86,7 +86,7 @@ static cell AMX_NATIVE_CALL amx_putcolumn(AMX *amx, const cell *params)
DMA2_Channel1->CNDTR = count;
DMA2_Channel1->CCR = 0x5991;

if (params[4])
if (params[5])
{
__LCD_DMA_Ready();
}
Expand Down

0 comments on commit 3c97ea3

Please sign in to comment.