Fix Log not existing in the ACS definition

This commit is contained in:
Sally Coolatta 2022-12-28 08:49:37 -05:00
parent ccfc35a70f
commit 032e93d686

View file

@ -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__