1
0
mirror of https://github.com/abakh/nbsdgames.git synced 2025-02-02 15:07:27 -05:00

moved to common.h

This commit is contained in:
me 2022-01-28 19:37:18 +03:30
parent f04f428b2f
commit 547420973a

View File

@ -67,14 +67,6 @@ byte shots,aims_to_stop;
char msg[150]={0};
byte msg_show=0;
byte digit_count(int num){
byte ret=0;
do{
++ret;
num/=10;
}while(num);
return ret;
}
void filled_rect(byte sy,byte sx,byte ey,byte ex){
byte y,x;
for(y=sy;y<ey;++y)