We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d4bbf commit a4140b0Copy full SHA for a4140b0
source/luaGraphics.cpp
@@ -1045,6 +1045,9 @@ void luaGraphics_init(lua_State *L) {
1045
uint32_t MEM_VRAM = (uint32_t)SCE_KERNEL_MEMBLOCK_TYPE_USER_CDRAM_RW;
1046
uint32_t MEM_PHYCONT_RAM = (uint32_t)SCE_KERNEL_MEMBLOCK_TYPE_USER_MAIN_PHYCONT_RW;
1047
uint32_t MEM_RAM = (uint32_t)SCE_KERNEL_MEMBLOCK_TYPE_USER_RW;
1048
+ VariableRegister(L,MEM_VRAM);
1049
+ VariableRegister(L,MEM_PHYCONT_RAM);
1050
+ VariableRegister(L,MEM_RAM);
1051
VariableRegister(L,FILTER_POINT);
1052
VariableRegister(L,FILTER_LINEAR);
1053
lua_newtable(L);
0 commit comments