- v0.9.01

- [NEW] version numbers
- debug() is now an alias of printf
This commit is contained in:
2022-11-02 13:48:53 +01:00
parent 1a732d7c71
commit 6cfc6b0438
4 changed files with 16 additions and 13 deletions

View File

@@ -211,7 +211,7 @@ int main(int argc,char*argv[]){
reinit();
initaudio();
debug("MINI SYSTEM BOOTING...");
debug("MINI v%s\n",MINI_VERSION);
lua_init(lua_files);
lua_call_init();
@@ -904,9 +904,9 @@ const char* tostr(int val) {
return SDL_itoa(val, tostr_tmp, 10);
}
void debug(const char *str) {
/*void debug(const char *str) {
printf("%s\n",str);
}
}*/
uint8_t ascii(const char *str, uint8_t index) {
return str[index];