Add system mounting

Also fixed sizes not re rendering when scrolling
This commit is contained in:
Such Meme, Many Skill
2019-08-19 23:01:47 +02:00
parent f3808edb40
commit 7dc9320b41
6 changed files with 73 additions and 23 deletions

View File

@@ -14,7 +14,7 @@ int _copystring(char *out, const char *in, int copynumb){
if (strlength > copynumb + 1) strlength = copynumb;
memset(out + strlength, '\0', 1);
int ret = copynumb - strlength;
return ret;
return ret + 4;
}
int messagebox(char *message){