blob: 0d7a5f9684d95bbf3d3437df4d171e8bae9b6234 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "global.h"
void osViSetYScale(f32 scale) {
register u32 prevInt = __osDisableInt();
__osViNext->y.factor = scale;
__osViNext->state |= 4;
__osRestoreInt(prevInt);
}
|