eliminate os_core, move into base; eliminate regs, move into arch abstraction layer, define x64 regs in x64 layer; move win32 backend for os core (now base) functionality to top-level win32 layer

This commit is contained in:
Ryan Fleury
2026-05-08 15:21:21 -07:00
parent 24c858171f
commit aea4a4ff9d
148 changed files with 7942 additions and 5268 deletions
@@ -335,7 +335,7 @@ fp_font_open(String8 path)
//- rjf: try to open font
for(PathTask *t = first_task; t != 0 && font.file == 0; t = t->next)
{
B32 file_exists = (os_properties_from_file_path(t->path).created != 0);
B32 file_exists = (properties_from_file_path(t->path).created != 0);
String16 path16 = str16_from_8(scratch.arena, t->path);
if(file_exists)
{