mirror of
https://github.com/Michael2-3B/Isometric-Minecraft-CE.git
synced 2024-11-23 22:51:02 +01:00
small fix
This commit is contained in:
parent
a713bf446b
commit
75c4fc8f27
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user