Takes kivutar's changes into account, cleaning things up slightly.

This commit is contained in:
Adam Harrison
2021-12-15 20:31:24 -05:00
parent f1054b8280
commit eb9918089a
4 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#include "api.h"
#include "renderer.h"
#include "rencache.h"
#include "../renderer.h"
#include "../rencache.h"
static int f_font_load(lua_State *L) {
const char *filename = luaL_checkstring(L, 1);
+2 -2
View File
@@ -6,8 +6,8 @@
#include <errno.h>
#include <sys/stat.h>
#include "api.h"
#include "dirmonitor.h"
#include "rencache.h"
#include "../dirmonitor.h"
#include "../rencache.h"
#ifdef _WIN32
#include <direct.h>
#include <windows.h>
+1 -1
View File
@@ -1,5 +1,5 @@
#import <Foundation/Foundation.h>
#include "lua.h"
#include <lua.h>
#ifdef MACOS_USE_BUNDLE
void set_macos_bundle_resources(lua_State *L)
+1
View File
@@ -1,6 +1,7 @@
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdalign.h>
#include <lauxlib.h>