Skip to content

Commit a918ef0

Browse files
authored
Allow slot 0 hud RTT (#6794)
1 parent 9e73127 commit a918ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/hud/hud.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2095,7 +2095,7 @@ void hud_render_gauges(int cockpit_display_num, float frametime)
20952095

20962096
render_target = ship_start_render_cockpit_display(cockpit_display_num);
20972097

2098-
if ( render_target <= 0 ) {
2098+
if ( render_target < 0 ) {
20992099
return;
21002100
}
21012101
} else {

0 commit comments

Comments
 (0)