1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-17 20:41:28 +00:00

cant use -1 for condition

This commit is contained in:
fig02 2024-11-24 02:20:10 -05:00
parent 1a0d352df6
commit e8183b4348

View file

@ -485,7 +485,7 @@ void Play_Init(GameState* thisx) {
playerStartBgCamIndex = PLAYER_GET_START_BG_CAM_INDEX(&player->actor);
if (playerStartBgCamIndex != -1) {
if (playerStartBgCamIndex != 0xFF) {
PRINTF("player has start camera ID (" VT_FGCOL(BLUE) "%d" VT_RST ")\n", playerStartBgCamIndex);
Camera_RequestBgCam(&this->mainCamera, playerStartBgCamIndex);
}