Shipwright/soh/src/libultra/io/vigetnextframebuf.c

10 lines
180 B
C

#include "global.h"
void* osViGetNextFramebuffer(void) {
u32 prevInt = __osDisableInt();
void* buff = __osViNext->buffer;
__osRestoreInt(prevInt);
return buff;
}