From 790876834ca4ad5b5394a0dc8cb6899c5e729712 Mon Sep 17 00:00:00 2001 From: David Betz Date: Mon, 9 Feb 2015 21:03:08 -0500 Subject: [PATCH] Remove a useless comment. --- ploader.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ploader.c b/ploader.c index 3167706..bb16be1 100644 --- a/ploader.c +++ b/ploader.c @@ -50,8 +50,6 @@ int PL_LoadSpinBinary(PL_state *state, int loadType, uint8_t *image, int size) /* download the spin binary */ for (i = 0; i < size; i += 4) { - - /* transmit the next long */ uint32_t data = image[i] | (image[i + 1] << 8) | (image[i + 2] << 16) | (image[i + 3] << 24); TLong(state, data); }