Implement default VMM directory

This commit is contained in:
David Hrdlička
2025-08-21 16:51:36 +02:00
committed by GitHub
parent eb8ba6a4d8
commit b37cb502ba
4 changed files with 28 additions and 3 deletions

View File

@@ -901,6 +901,14 @@ plat_get_temp_dir(char *outbuf, uint8_t len)
path_slash(outbuf);
}
void
plat_get_vmm_dir(char *outbuf, const size_t len)
{
// Return empty string. SDL 86Box does not have a VM manager
if (len > 0)
outbuf[0] = 0;
}
bool
process_media_commands_3(uint8_t *id, char *fn, uint8_t *wp, int cmdargc)
{