mirror of
https://github.com/zeldaret/tp
synced 2026-07-09 14:55:32 -04:00
MSL_C fully matched / some SSystem cleanup/ obj_rgate OK (#2011)
* cleanup SSystem files * MSL_C fully matched * fix build * remove asm * reorganize MSL_C/Runtime libs into more accurate setup * little more cleanup * cleanup some MSL headers * obj_rgate OK * remove asm * some rgate documentation
This commit is contained in:
@@ -1,27 +1,22 @@
|
||||
//
|
||||
// Generated By: dol2asm
|
||||
// Translation Unit: c_API_graphic
|
||||
//
|
||||
/**
|
||||
* c_API_graphic.cpp
|
||||
*
|
||||
*/
|
||||
|
||||
#include "SSystem/SComponent/c_API_graphic.h"
|
||||
#include "SSystem/SComponent/c_API.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
//
|
||||
// Declarations:
|
||||
//
|
||||
|
||||
/* 802632C8-802632F8 0030+00 s=0 e=1 z=0 None .text cAPIGph_Painter__Fv */
|
||||
void cAPIGph_Painter(void) {
|
||||
g_cAPI_Interface[3]();
|
||||
void cAPIGph_Painter() {
|
||||
g_cAPI_Interface.painterMtd();
|
||||
}
|
||||
|
||||
/* 802632F8-80263328 0030+00 s=0 e=1 z=0 None .text cAPIGph_BeforeOfDraw__Fv */
|
||||
void cAPIGph_BeforeOfDraw(void) {
|
||||
g_cAPI_Interface[1]();
|
||||
void cAPIGph_BeforeOfDraw() {
|
||||
g_cAPI_Interface.beforeOfDrawMtd();
|
||||
}
|
||||
|
||||
/* 80263328-80263358 0030+00 s=0 e=1 z=0 None .text cAPIGph_AfterOfDraw__Fv */
|
||||
void cAPIGph_AfterOfDraw(void) {
|
||||
g_cAPI_Interface[2]();
|
||||
void cAPIGph_AfterOfDraw() {
|
||||
g_cAPI_Interface.afterOfDrawMtd();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user