mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
17 lines
340 B
C++
17 lines
340 B
C++
#include <libultraship/bridge.h>
|
|||
|
|
|
||
|
|
extern "C" {
|
||
|
|
#include "z64.h";
|
||
|
|
extern f32 D_8085D958[2];
|
||
|
|
}
|
||
|
|
|
||
|
|
void RegisterLongerFlowerGlide() {
|
||
|
|
if (CVarGetInteger("gCheats.LongerFlowerGlide", 0)) {
|
||
|
|
D_8085D958[0] = 99999.9f;
|
||
|
|
D_8085D958[1] = 99999.9f;
|
||
|
|
} else {
|
||
|
|
D_8085D958[0] = 600.0f;
|
||
|
|
D_8085D958[1] = 960.0f;
|
||
|
|
}
|
||
|
|
}
|