Fixed PSP building
All checks were successful
Build Dusk / run-tests (push) Successful in 1m18s
Build Dusk / build-linux (push) Successful in 1m53s
Build Dusk / build-psp (push) Successful in 2m8s

This commit is contained in:
2026-01-05 20:13:11 -06:00
parent 8d00fe9d16
commit 024ace1078
7 changed files with 19 additions and 17 deletions

View File

@@ -12,7 +12,7 @@
#include "util/string.h"
#include "script/scriptmodule.h"
int32_t moduleSysPrint(lua_State *L) {
int moduleSysPrint(lua_State *L) {
assertNotNull(L, "Lua state cannot be NULL");
int n = lua_gettop(L);
@@ -33,7 +33,7 @@ int32_t moduleSysPrint(lua_State *L) {
return 0; // no values returned to Lua
}
int32_t moduleSysInclude(lua_State *L) {
int moduleSysInclude(lua_State *L) {
assertNotNull(L, "Lua state cannot be NULL");
if(!lua_isstring(L, 1)) {
@@ -82,7 +82,7 @@ int32_t moduleSysInclude(lua_State *L) {
return 0;
}
int32_t moduleSysModule(lua_State *L) {
int moduleSysModule(lua_State *L) {
assertNotNull(L, "Lua state cannot be NULL");
if(!lua_isstring(L, 1)) {