1
0
mirror of https://github.com/Michael2-3B/Isometric-Minecraft-CE.git synced 2024-11-24 07:00:14 +01:00

small fix

This commit is contained in:
Michael B 2022-02-08 00:10:41 -06:00
parent a713bf446b
commit 75c4fc8f27
2 changed files with 2 additions and 2 deletions

BIN
ISO.8xp

Binary file not shown.

View File

@ -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);
}
}
}