mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-16 10:02:59 -07:00
Correct default value of gInvertYAxis and change default trials required to vanilla (#1610)
This commit is contained in:
parent
c21b2e8f00
commit
6265613bc7
4 changed files with 11 additions and 11 deletions
|
@ -1489,7 +1489,7 @@ s32 Camera_Free(Camera* camera) {
|
|||
f32 newCamY = D_8015BD7C->state.input[0].cur.right_stick_y * 10.0f;
|
||||
|
||||
camera->globalCtx->camX += newCamX * (CVar_GetS32("gInvertXAxis", 0) ? -1 : 1);
|
||||
camera->globalCtx->camY += newCamY * (CVar_GetS32("gInvertYAxis", 0) ? 1 : -1);
|
||||
camera->globalCtx->camY += newCamY * (CVar_GetS32("gInvertYAxis", 1) ? 1 : -1);
|
||||
|
||||
if (camera->globalCtx->camY > 0x32A4) {
|
||||
camera->globalCtx->camY = 0x32A4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue