mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-31 12:13:16 +00:00
Fix Log not existing in the ACS definition
This commit is contained in:
parent
ccfc35a70f
commit
032e93d686
1 changed files with 11 additions and 0 deletions
|
|
@ -182,6 +182,7 @@ special
|
|||
// 84 to 85: Implemented by ACSVM
|
||||
void { 85 }:BeginPrint(void),
|
||||
void { 85 }:BeginPrintBold(void),
|
||||
void { 85 }:BeginLog(void),
|
||||
void { 86 }:EndPrint(void),
|
||||
void { 87 }:PrintString(str), // 87 to 89: Implemented by ACSVM
|
||||
void { 88 }:PrintInt(int),
|
||||
|
|
@ -221,6 +222,8 @@ special
|
|||
|
||||
// 263: Implemented by ACSVM
|
||||
|
||||
void {270 }:EndLog(void),
|
||||
|
||||
void {273 }:PrintModuleCharArray(int, int), // 273 to 275: Implemented by ACSVM
|
||||
void {274 }:PrintWorldCharArray(int, int),
|
||||
void {275 }:PrintGlobalCharArray(int, int),
|
||||
|
|
@ -269,5 +272,13 @@ print PrintRaw
|
|||
ACS_PrintPropertyBase()
|
||||
);
|
||||
|
||||
print __Log
|
||||
(
|
||||
(begin): BeginLog,
|
||||
(end): EndLog,
|
||||
|
||||
ACS_PrintPropertyBase()
|
||||
);
|
||||
|
||||
#endif//__GDCC_Header__ACS__rrspecial_acs__
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue