mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
chore(util): permit arbitrary return values in unimplemented macro
This commit is contained in:
parent
0b30174088
commit
a3a12c23a2
23 changed files with 519 additions and 524 deletions
|
|
@ -3,19 +3,19 @@
|
|||
#include <cstdint>
|
||||
|
||||
int32_t CSimpleModelFFX_ResetLights(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED();
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
}
|
||||
|
||||
int32_t CSimpleModelFFX_AddLight(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED();
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
}
|
||||
|
||||
int32_t CSimpleModelFFX_AddCharacterLight(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED();
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
}
|
||||
|
||||
int32_t CSimpleModelFFX_AddPetLight(lua_State* L) {
|
||||
WHOA_UNIMPLEMENTED();
|
||||
WHOA_UNIMPLEMENTED(0);
|
||||
}
|
||||
|
||||
FrameScript_Method SimpleModelFFXMethods[NUM_SIMPLE_MODEL_FFX_SCRIPT_METHODS] = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue