mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-29 22:36:01 +00:00
10 lines
207 B
C
10 lines
207 B
C
#include <global.h>
|
|
|
|
void osViSetYScale(float scale) {
|
|
register s32 prevInt;
|
|
|
|
prevInt = __osDisableInt();
|
|
__osViNext->y.factor = scale;
|
|
__osViNext->state |= 4;
|
|
__osRestoreInt(prevInt);
|
|
}
|