diff --git a/ISO.8xp b/ISO.8xp index 5b55681..7f239a1 100644 Binary files a/ISO.8xp and b/ISO.8xp differ diff --git a/src/main.c b/src/main.c index 2c37b96..f25c83a 100644 --- a/src/main.c +++ b/src/main.c @@ -602,7 +602,7 @@ void blockSelectionChange(){ do { blockSelection += i; if(blockSelection > 111) blockSelection = 0; - if(blockSelection < 0) blockSelection = 110; + if(blockSelection < 0) blockSelection = 111; } while(blocks[blockSelection] == NULL); drawBlockSelection(); gfx_BlitBuffer(); @@ -635,7 +635,7 @@ void blockPlacement(){ gfx_BlitBuffer(); } else if(key == kb_Del){ //map[a][b][c] = AIR; - //drawMap(selection + //drawMap(somewhere behind the air block); } } }